URL Redirection fault

Permalink
I'm running 8.4.3.
I select remove index.php in C5. it seems to work but when i go to edit a page or change design etc, the panel opens for those items but its blank. Same goes for dashboard.
I checked the htaccess file and it had this code:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]

I tried removing that code as a test but nothing changed.
If i turn off remove index.php everything goes back to normal?

Any ideas please??

deanhawthornthwaite
 
Elstud replied on at Permalink Reply
Elstud
Yes you just need this and after reload the page.

<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>
deanhawthornthwaite replied on at Permalink Reply
deanhawthornthwaite
Many thanks, will give that a try!