index.php
Permalink
hello friends!
I've recently enable this option to remove index.php from url:
dashboard->sitewide settings->enable pretty url's.
but didn't copy that code in .htaccess, now i am not even able to login and change settings.
none of my pages access except home page.
help me!
I've recently enable this option to remove index.php from url:
dashboard->sitewide settings->enable pretty url's.
but didn't copy that code in .htaccess, now i am not even able to login and change settings.
none of my pages access except home page.
help me!
Add this to your .htaccess
<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>
<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>
or this to your application/config/concrete.php
PM Sent.
Victor