我正在使用php代码。
现在我的链接是http://www.mysite.com/index.php?/
如何将链接更改为http://www.mysite.com/
?
RewriteEngine on
Options +FollowSymLinks
RewriteCond %{THE_REQUEST} ^.*/index\.php
RewriteRule ^(.*)index.php$ http://www.mysite.com/$1 [R=301,L]
我正在使用此代码,但有了这个我只能删除index.php而不是“?/”。