.htaccess doesn't work on xampp (windows 7)

前端 未结 4 1702
眼角桃花
眼角桃花 2020-12-19 10:42

I\'m setting my .htaccess file right now to use friendly urls (manually). But, when i go to the url the server shows me Error 404

4条回答
  •  没有蜡笔的小新
    2020-12-19 11:36

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

    if we want to remove index.php form url .First we create a .htaccess file on root directory of project with out any extension. And add this code in this file and so remove the index.php Application/config/config.php

提交回复
热议问题