Welcome Guest, Not a member yet? Register   Sign In
remove index.php from url
#6

If your Apache server has mod_rewrite enabled, you can easily remove this file by using a .htaccess file with some simple rules. Here is an example of such a file, using the “negative” method in which everything is redirected except the specified items:


RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

Same situation happens to me. I have change the code in htaccess file.
Please check with this. Hope it will work for you also.

If it is not work check Please let us know your url is a Https or Http.
Reply


Messages In This Thread
remove index.php from url - by jyoti sudyal - 03-05-2018, 04:59 AM
RE: remove index.php from url - by my_RZ - 03-05-2018, 05:15 AM
RE: remove index.php from url - by jyoti sudyal - 03-05-2018, 05:32 AM
RE: remove index.php from url - by ciadmin - 03-05-2018, 06:59 AM
RE: remove index.php from url - by jyoti sudyal - 03-05-2018, 10:36 PM
RE: remove index.php from url - by Muthusamy - 03-05-2018, 11:06 PM
RE: remove index.php from url - by jyoti sudyal - 03-06-2018, 06:28 AM
RE: remove index.php from url - by isoftzone - 01-07-2021, 04:18 AM



Theme © iAndrew 2016 - Forum software by © MyBB