Paste below code to .htaccess file (.htaccess file present in root folder) and remove forcefully index.php from url.
1 2 | RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC] RewriteRule (.*?)index\.php/*(.*) / $1 $2 [R=301,NE,L] |
Paste below code to .htaccess file (.htaccess file present in root folder) and remove forcefully index.php from url.
1 2 | RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC] RewriteRule (.*?)index\.php/*(.*) / $1 $2 [R=301,NE,L] |
You must be logged in to post a comment.