• Hi, my htacces file is

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    But it causes a loop, so my page wont open. I want to use the friendly links structure, since I moved to a new provider my htacces is not working well.

    Someone can tell me what I should change??

Viewing 1 replies (of 1 total)
  • try adding Options +FollowSymlinks at the top of your htaccess file

    Options +FollowSymlinks
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

Viewing 1 replies (of 1 total)
  • The topic ‘htacces causes loop’ is closed to new replies.