301站点重定向

发布于 2024-11-08 01:24:55 字数 172 浏览 1 评论 0原文

刚刚为客户构建了一个新站点,旧站点的 URL 结构基本上是 /index.php?pageid=1、/index.php?pageid=2 等

如何在所有旧页面上放置重定向

当前站点使用domain.com/blog-post、domain.com/contact 等

感谢您的帮助

Just finished building a new site for a client and the old sites URL structure was basically /index.php?pageid=1, /index.php?pageid=2 etc

How do I put a redirect on all of the legacy pages

The current site uses domain.com/blog-post, domain.com/contact etc

Thanks for the help

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

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

发布评论

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

评论(1

梦幻的味道 2024-11-15 01:24:55

根据页面数量,您可能会使用 RewriteMap想要:

RewriteMap oldtonew txt:/path/to/file/map.txt 
RewriteRule ^/index.php?pageid=([0-9]+) ${oldtonew:$1} 

map.txt的内容:

1    /blog-post
2    /contact
3    /foo
4    /bar

编辑

如果您只想将所有旧页面重定向到新页面之一,则不必费心rewritemap:

RewriteRule ^/index.php?pageid=([0-9]+) /path/to/new/page

Depending on the number of pages, a RewriteMap might be what you want:

RewriteMap oldtonew txt:/path/to/file/map.txt 
RewriteRule ^/index.php?pageid=([0-9]+) ${oldtonew:$1} 

contents of map.txt:

1    /blog-post
2    /contact
3    /foo
4    /bar

Edit

If you only want to redirect all the old pages to one of the new ones, you don't have to bother with rewritemap:

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