我有网站,我在htaccess的帮助下将URL清理干净。 例如。 example.com/fathers/?n=name 打开 example.com/father/name
我是在以下代码的帮助下完成的。
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^father/([^\/]+)/(\/|)$ fathers/index.php?n=$1 [QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^father/([^\/]+)(\/|)$ fathers/index.php?n=$1 [QSA]
我的问题是,如何制作
example.com/anythinghere/?n=name
open as
example.com/anythinghere/name
我该怎么做?
答案 0 :(得分:0)
您可以在.htaccess
:
RewriteRule ^anythinghere/([^/]*)$ /anythinghere/?n=$1 [L]
在测试之前,请确保清除缓存。