【发布时间】:2015-08-13 17:04:36
【问题描述】:
我有一个使用“帖子名称”固定链接设置的 wordpress 网站。
我还在我的网站中设置了一个带有 URL 变量的链接:
http://www.xxxxxxxxxx.com/test/?location=London
我想将此 URL 修改为 http://www.xxxxxxxxxx.com/test/London
但是对于 wordpress 网站的其余部分来说,它把 htaccess 搞乱了
我已经尝试了以下 htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
//remove location name
RewriteRule ^([a-zA-Z0-9_-]+)$ /test/?location=$1
</IfModule>
# END WordPress
【问题讨论】: