我将自己的wordpress永久链接配置为year/month/postname
格式,并使用WP为我提供的代码更新了我的.htaccess
文件。
现在,当我写帖子标题,并点击标题框以获取永久链接时,而不是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>