WordPress重写图库网址

时间:2013-10-04 21:05:55

标签: wordpress .htaccess url-rewriting

我正在编写一个带有分页的Wordpress库,现在有如下的URL:

  

http://example.lt/photo/value/?id=2

我想要:

  

http://example.lt/photo/value/id/2

其中:

value - post name 
photo - static not change 

我尝试了永久链接设置,但我的问题没有结果,我想我需要重写角色htaccess(?)。

1 个答案:

答案 0 :(得分:0)

在文档根目录中添加以上任何wordpress规则:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^photo/([^/]+)/([^/]+)/([0-9]+)/?$ /photo/$1/?$2=$3 [L,QSA]