|
If I may just check, the .htaccess file in question here should be in the folder where the issues is? It is not actually the root folder. I've applied .htaccess with mod_rewrite before for converting URLs to .php from .htm, but I really don;t know the field.
And to redirect from "/" to "/index.php" I should therefore use:
[code:1:0b4da39d46]
FollowSymlinks On
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com$ [NC]
RewriteRule ^(.*) http://www.yourdomain.com$1 [R=permanent]
RewriteRule ^/index.html$ http://www.yourdomain.com/ [R=permanent]
[/code:1:0b4da39d46]
yes?
Much appreciated, btw, piramida - server issues are normally a little beyond myself.
|