以下代码似乎与index.php
冲突我将如何允许index.php? :)> http://www.domain.com/
Options -MultiViews
RewriteEngine on
RewriteBase /
RewriteRule ^(\w+)/?$ live.php?content=$1 [L,QSA,NC]
注意:我仍然希望它将网址重写为/ $ 1
所有的帮助都很感激我明显感谢解决方案。
如果您有解决方案而不影响当前结构,请随时在下面发布。
答案 0 :(得分:0)
最好添加RewriteCond
以避免重写现有文件/目录:
DirectoryIndex index.php
Options -MultiViews
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(\w+)/?$ live.php?content=$1 [L,QSA]