通过 .htaccess 将旧 WordPress URL 重写为新站点的 URL 结构

发布于 2024-11-02 07:44:08 字数 537 浏览 0 评论 0原文

大家好,我已将网站从 WordPress 迁移到新的 CMS,并且我想通过重定向保留旧 URL。

WordPress 永久链接结构如下所示:

/2011/04/01/name-of-post

我保留了帖子段,所以我需要做的就是摆脱基于日期的路径并重定向到我的新目录结构:

/articles/view/name-of-post

到目前为止,我的尝试看起来像这样(在我的 .htaccess 文件中):

RewriteCond %{THE_REQUEST} /[0-9]{4}/[0-9]{2}/[0-9]{2}/(.+) [NC]
RewriteRule ^/[0-9]{4}/[0-9]{2}/[0-9]{2}/(.+)$ /articles/view/$1 [L]

还没有运气。我也在那里尝试了 %{PATH_INFO} ,没有骰子。

如果来自那些更精通 Apache 重写规则的人提供帮助,我们将不胜感激。

Hey folks, I've migrated a site from WordPress to a new CMS, and I want to preserve the old URLs via a redirect.

The WordPress permalink structure was like so:

/2011/04/01/name-of-post

I've preserved the post slugs, so all I need to do is get rid of the date-based paths and redirect to my new directory structure:

/articles/view/name-of-post

My attempts thus far have looked like this (in my .htaccess file):

RewriteCond %{THE_REQUEST} /[0-9]{4}/[0-9]{2}/[0-9]{2}/(.+) [NC]
RewriteRule ^/[0-9]{4}/[0-9]{2}/[0-9]{2}/(.+)$ /articles/view/$1 [L]

No luck yet. I tried %{PATH_INFO} in there as well, no dice.

Any help from those more versed in Apache rewrite rules than would be much appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一腔孤↑勇 2024-11-09 07:44:08

像这样的事情应该做。

RedirectMatch permanent ^/20../../../(.*)$           /articles/view/$1

Something like this should do.

RedirectMatch permanent ^/20../../../(.*)$           /articles/view/$1
小巷里的女流氓 2024-11-09 07:44:08

它可以通过一个简单的 RewriteRule 来处理,如下所示:

RewriteRule ^[0-9]{4}/[0-9]{2}/[0-9]{2}/(.+)$ /articles/view/$1 [L]

It can be handled in one simple RewriteRule like this:

RewriteRule ^[0-9]{4}/[0-9]{2}/[0-9]{2}/(.+)$ /articles/view/$1 [L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文