我想要所有的疑问
http://mysite.com/something/otherthing?foo=bar&x=y
被重写为
http://mysite.com/something/otherthing.php?foo=bar&x=y
换句话说,只需将.php扩展名设为可选的.
我会这样做的.基本上,如果文件不存在,请尝试添加.php.
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)$ $1.php [QSA,L]