如何使用 wordpress 的重写规则将我的 URL 从 domain.com/sprekers/?spreker=value 更改为 domain.com/value。
我试着像这样改变它
RewriteCond %{QUERY_STRING} ^spreker=(.*)$
RewriteRule ^sprekers/$ %1/? [R=301,L]
比我用 htaccess 测试仪测试它http://htaccess.madewithlove.be如果我在测试仪上测试它一切正常但是当我在我的 wordpress 网站上这样做时它不起作用。这是我完整的 htaccess 文件:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteCond %{QUERY_STRING} ^spreker=(.*)$
RewriteRule ^sprekers/$ %1/? [R=301,L]
</IfModule>
我认为它不起作用,因为 /sprekers 已经由 wordpress “制作”了我该如何解决这个问题?
干杯罗宾