Installing for a sub-domain/add-on domain
Permalink
I am building a site as a subdomain. When I try to access the installation from a browser I get "The requested URL /domainName/domainName/index.php/install was not found on this server." error.
The URL is really /domainName/index.php/install was not found on this server.
I thought it would be a htaccess edit to fix it
The htaccess at the root of my hosting (top level) is as follows
Should I have an htaccess in the subdomain file directory too?
Thanks for any help.
Seth
The URL is really /domainName/index.php/install was not found on this server.
I thought it would be a htaccess edit to fix it
The htaccess at the root of my hosting (top level) is as follows
addhandler x-httpd-php-cgi .php4 addhandler x-httpd-php5-cgi .php5 <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME}/index.html !-f RewriteCond %{REQUEST_FILENAME}/index.php !-f RewriteRule . index.php [L] </IfModule>
Should I have an htaccess in the subdomain file directory too?
Thanks for any help.
Seth