Viewing 1 post (of 1 total)
Viewing 1 post (of 1 total)
This topic contains 1 reply, has 1 voice, and was last updated by alikhlaas 7 years, 3 months ago.
The topic ‘Remove Index.php from URL’ is closed to new replies.
I have resolved this issue by adding in .htaccess
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.)$ index.php?$1 [L,QSA]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}s(.)/index.php [NC]
RewriteRule ^ %1 [R=301,L]
This topic contains 1 reply, has 1 voice, and was last updated by alikhlaas 7 years, 3 months ago.
The topic ‘Remove Index.php from URL’ is closed to new replies.