Wordpress中自定义页面的清理URL

时间:2019-01-08 08:16:35

标签: wordpress .htaccess url-rewriting

我有一个wordpress网站,其中有一个特定的词典页面。该页面实际上是一个自定义页面,并执行以下操作:

  • site.com/dictionary列出所有单词
  • site.com/dictionary/?w=word显示了单词的定义

现在,我希望清理URL并使其变为:

site.com/dictionary/word

我在.htaccess中做了这些行,但出现404错误:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /dictionary/
    RewriteRule (.*) ?w=$1 [L]
</IfModule>

您能帮我吗?

0 个答案:

没有答案