Apache Redirect - 不区分大小写

时间:2016-12-19 15:57:05

标签: apache .htaccess redirect mod-rewrite

如何从https://example.com/productshttps://example.com/newPath等链接进行强大的permanet重定向

重定向应该不区分大小写。例如,呼叫https://example.com/ProDucTs也应该有效。

我认为解决方案应包含类似的内容

RewriteCond ????? [NC] RewriteRule ????? [L,R = 301]

1 个答案:

答案 0 :(得分:3)

您可以在htaccess文件中设置这两个规则

RedirectMatch 301 (?i)/android-app  https://play.google.com/app-url

RewriteRule ^products$ /newPath? [L,R=301,NC] 

以上两条规则"?i"和" NC"不区分大小写。

相关问题