【发布时间】:2019-05-23 06:05:51
【问题描述】:
我正在将一个旧网站迁移到 WordPress。我必须迁移大约 100,000 页。我写了一个使用wp_insert_post的插件。
我还想在不使用重定向的情况下迁移旧的 URL 结构(因为据说每个 301 重定向都会失去一些链接能力),而是使用永久链接。每当我设置包含斜杠(目录结构)的永久链接时,斜杠都会替换为“-”。这就是问题所在。
wp_insert_post(array=>('post_name' => 'slashes/go/there/'));
permalink = 'slashes-go-there-';
任何想法如何我可以为每个页面单独设置永久链接将不胜感激?
【问题讨论】:
标签: wordpress permalinks