我在用域名扩展重定向URL时遇到了麻烦。
例如,我有以下URL:
www.example.com/another-site.nlwww.example.com/yet-another-site.com我要从斜线后的每个点重定向到条纹。因此,它们必须成为:
www.example.com/another-site-nlwww.example.com/yet-another-site-com有谁有主意吗?
发布于 2014-12-29 14:43:55
您希望用一个“路径段”重定向以.nl、.com、.be或.de结尾的urls。使用mod_rewrite,您可以使用以下方法完成此操作:
RewriteEngine on
RewriteRule ^([^/]+)\.(nl|com|be|de)$ $1-$2 [R,L]在测试此操作是否正确后,将R标志替换为R=301。
https://stackoverflow.com/questions/27687515
复制相似问题