Wordpress simple rewrite rule not working

前端 未结 3 1493
名媛妹妹
名媛妹妹 2021-01-24 12:44

I\'m trying to create a rewrite rule in Wordpress to create direct pretty links to search results.

I\'m working with a custom post type called \'object\'

My resu

3条回答
  •  心在旅途
    2021-01-24 13:25

    The rewrite rule needs to be placed as

    
    RewriteEngine On
    RewriteBase /
    
    RewriteRule ^objects/new(.*)$ /objects/?filter=new [L]
    
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    

提交回复
热议问题