我想将我的转换postname.html
为postid.html
我在 wordpress 中的链接(自定义永久链接结构:)
/%postname%.html
我写在.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
现在我想将postid
最后一个链接添加为www.xxxx.com/123.html
. 我添加此代码:
/%post_id%.html
但是当我按下谷歌中的任何链接时,我找不到错误页面。
我怎样才能在不丢失谷歌链接的情况下转换我的链接?
谢谢