【发布时间】:2012-07-03 18:41:11
【问题描述】:
我有一些想要更改的链接。示例如下:
我有:
site.com/linktochange/article-title-here
我想把它改成:
site.com/link-to-change/article-title-here
- 如何将破折号添加到这些类别中?
- 是否需要 301 重定向?每个类别下的文章是否仍然有效?
【问题讨论】:
我有一些想要更改的链接。示例如下:
我有:
site.com/linktochange/article-title-here
我想把它改成:
site.com/link-to-change/article-title-here
【问题讨论】:
Wordpress 将允许您更改固定链接并处理其余部分,但您可能会丢失一些搜索引擎点击量。
更多信息在这里:http://codex.wordpress.org/Using_Permalinks
如果您自己托管旧网址,您可以使用 mod_rewrite 将旧网址重定向到新网址。
【讨论】:
您可能不需要为此更改永久链接。 只编辑 Category slug 可能更容易。 (仪表板 > 帖子 > 类别)
如果您的类别是开源并且其类别标签是“开源”,则该类别中的文章将具有以下 URL 结构和永久链接 (/%category%/%postname%)
site.com/opensource/hello-world
您可以将您的开源类别 slug 更改为:open-source,它会将 URL 结构更改为:
site.com/open-source/hello-world
希望这会有所帮助。
“slug”是名称的 URL 友好版本。它通常都是小写的,并且只包含字母、数字和连字符。
【讨论】: