我有一个我在Wordpress上构建的常规商业网站 - www.example.com
我的网站上有一个博客页面 - www.example.com/blog
查看博客文章时,它看起来像这样:www.exmaple.com/[category]/[posts-name]
如何在类别之前向此网址添加“/ blog”? 像这样:www.exmaple.com/blog/[category]/[posts-name]
这是我目前的.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
答案 0 :(得分:0)
解决!
WordPress设置 - &gt;永久链接。
选择自定义结构并输入:
博客/%类别%/%postname%