我已经阅读了很多关于如何重写网址的帖子,但我仍然无法找到重写以下内容的方法:
www.mysite.com/index.php
www.mysite.com/login.html
只显示如下:
www.mysite.com
有什么想法吗?
答案 0 :(得分:2)
通常应该是这样的:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?$1 [L,QSA]
</IfModule>
我建议您在Remove 'index.php' from URL with .htaccess查看更具体的答案,here查看教程