这个应该非常简单。该网址区分大小写,因此我想重定向输入小写字母的任何人' m'。
知道它为什么不起作用?
RewriteRule ^www.junaphotography.com/100moments$ http://www.junaphotography.com/100Moments/ [L,QSA]
答案 0 :(得分:0)
RewriteRule
的正则表达式匹配(第一个参数)与 URI 匹配,后者不包含主机名。您可以省略主机名:
RewriteRule ^/?100moments/?$ http://www.junaphotography.com/100Moments/ [L,QSA]
如果您确实需要确保请求适用于www.junaphotography.com
主机,请添加RewriteCond
:
RewriteCond %{HTTP_HOST} ^www.junaphotography.com$ [NC]
RewriteRule ^/?100moments/?$ http://www.junaphotography.com/100Moments/ [L,QSA]