我有一个 postNuke 网站,我目前正在转移到 Wordpress,我希望旧网站的格式不会在转换中丢失。我试过玩它,但我无处可去!
当前站点当前将 URL 重写为:
domain.com/Article1234.html
其中 1234 是文章的内部 ID 号。
旧站点中的 ID 与新站点中的 ID 相同。新 wordpress 站点中的 URL 当前重写为自定义结构:
/%category%/%postname%
这是 .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
需要做什么才能将旧格式重定向到新格式?更改htaccess中的重写规则?301重定向?用于重写的wordpress插件?