是否可以以仅重写以下 url 而其余部分不重写的方式编辑 htacces?
http://www.example.com/index.php?x=foobar
to
http://www.example.com/foobar/
我希望没有 x=... 作为变量的页面正常运行
我得到了以下内容,但这不起作用
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*)/ index.php?x=$1
RewriteCond $1 !\.(js|ico|gif|jpg|png|css|html|swf|mp3|wav|txt)$
谁能帮我?