I have an add-on domain bbmap.org with Document Root public_html/bbmap.org (not redirected).
I have a subdomain bbmap with root domain belltown.x10hosting.com and Document Root /public_html/bbmap.org (not redirected).
I get a File Not Found error if I try to access files in subdirectories of my add-on domain. The error is displayed by my custom error handler for my bbmap.org subdomain/add-on domain.
So this gives a File Not Found error: http://bbmap.org/icons/phpinfo.php
But this does not: http://belltown.x10hosting.com/bbmap.org/icons/phpinfo.php
I can also access files in the bbmap.org root directory: http://bbmap.org/phpinfo.php
My bbmap.org directory, icons subdirectory and phpinfo.php files all have permissions of 755.
The only contents of my .htaccess files, both in my main domain public_html directory and bbmap.org subdirectory are:
So any idea why I cannot access files in subdirectories of my add-on domain?
I have a subdomain bbmap with root domain belltown.x10hosting.com and Document Root /public_html/bbmap.org (not redirected).
I get a File Not Found error if I try to access files in subdirectories of my add-on domain. The error is displayed by my custom error handler for my bbmap.org subdomain/add-on domain.
So this gives a File Not Found error: http://bbmap.org/icons/phpinfo.php
But this does not: http://belltown.x10hosting.com/bbmap.org/icons/phpinfo.php
I can also access files in the bbmap.org root directory: http://bbmap.org/phpinfo.php
My bbmap.org directory, icons subdirectory and phpinfo.php files all have permissions of 755.
The only contents of my .htaccess files, both in my main domain public_html directory and bbmap.org subdirectory are:
Code:
<LimitExcept POST GET>
Order Deny,Allow
Deny from all
</LimitExcept>
AddType application/x-httpd-php5 .html .htm
So any idea why I cannot access files in subdirectories of my add-on domain?