如何在wordpress url中更改类别?

时间:2012-10-05 09:47:43

标签: wordpress url-rewriting

例如,我有

http://mysite.com/category/sport?post_type=question = 

http://mysite.com/sport/question

1 个答案:

答案 0 :(得分:1)

更改永久链接表单管理面板。enter image description here

默认情况下,永久链接是默认的,您必须选择POST NAME并点击SAVE buuton ...

将以下代码添加到.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]
</IfModule>
# END WordPress

确保已启用mod_rewrite模块。