使用 htaccess 重定向数百个 url
你好,我现在大部分链接的网址结构是: www.url.com/category1/sample-keyword.html
我希望将它们重定向到新的网址,该网址已从网址结构中删除了单词示例,即:
www.url.com/category1/keyword.html
应该做什么我放入 htaccess 自动重定向 www.url.com/category1/ 部分中的所有 url 以重定向到新的 url 结构?
hello my url structure right now for the majority of my links is:
www.url.com/category1/sample-keyword.html
I am looking to redirect them to the new url that has dropped the word sample from the url structure ie to this:
www.url.com/category1/keyword.html
what should i put in htaccess that auto redirects all the urls in the www.url.com/category1/ section to redirect to the new url structure?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该可以解决问题:
它将匹配所有带有子字符串
/sample-
的 URL,并将其从 URL 中删除。根据您的站点组织,您可能需要调整模式,但这应该是一个很好的起点。This should do the trick:
It will match all URLS with the substring
/sample-
and strip it from the URL. Depending on your site organization, you may need to adjust the pattern, but that should be a good jumping-off point.