我将我的 wordpress 永久链接配置为year/month/postname
格式化,并.htaccess
使用 WP 提供给我的代码更新了我的文件。
现在,当我写帖子标题并单击标题框以获取永久链接时,我猜不是blog.com/2012/10/my-blog-title
我得到blog.com/2012/10/12345
的 12345 始终是一个随机显示的 5 位数字?
如何获得带有帖子标题的永久链接?
我的 .htaccess 文件:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /my_blog/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /my_blog/index.php [L]
</IfModule>