我目前正在学习燃料php,我整天都在谷歌搜索了很多,但仍然找不到如何删除URL中的index.php的解决方案。也就是说,而不是 本地主机/项目/公/ index.php文件/你好 我只需要写: 本地主机/项目/公/你好 我目前正在做教程here,当我克隆他们的存储库时,由于URL没有index.php,我找不到404错误。我怎样才能做到这一点?我正在使用WAMP服务器。
答案 0 :(得分:0)
尝试将此.htaccess文件添加到您的网络目录:
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^(.*)$ index.php [NC,L]
答案 1 :(得分:0)
在顶级目录中创建.htaccess并添加:
<IfModule mod_rewrite.c>
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^ index.php [L]
</IfModule>