想要转发以下内容:
localhost/bla/index.html -> localhost/index.php?s=bla/index.html
localhost/blub.html -> localhost/index.php?s=blub.html
localhost/blog.html?site=10 -> localhost/index.php?s=blog.html&site=10
localhost/folder -> localhost/index.php?s=folder
但我只想重定向.html和文件夹。
答案 0 :(得分:2)
RewriteCond %{REQUEST_URI} .html$ [OR]
RewriteCond -d
RewriteRule (.*) /index.php?s=$1 [L,QSA]
只有当uri以“.html”结尾或者它是一个文件夹时,它才会将整个uri重写为?s =查询字符串。 QSA标志应该确保.html文件(?site = 10)上的查询字符串也被添加到新的URL中。