有一种方法你会得到一个像my-page-2
当你在垃圾箱中有一个页面或帖子my-page
, 因此,最简单的方法就是检查你的页面,发布垃圾,如果需要的话,清空它们。
如果不起作用,请重置永久链接:Using Permalinks « WordPress Codex 并确保将更改写入.htaccess
文件
确保没有其他重定向.htaccess
除标准WordPress重写块外:
# 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
如果由于某种原因无法从设置>>永久链接中保存永久链接,则可能需要手动清除数据库中的永久链接设置,然后从设置>>永久链接中再次保存它们;选项位于
wp_options
通常被称为
permalink_options
为#34。
您还可以使用PHPMyAdmin或Adminer在数据库中搜索slugmy-post
看看它在哪里使用。Adminer « WordPress Plugins