未应用简单的mod重写规则

时间:2012-07-16 23:12:50

标签: mod-rewrite

这个应该非常简单。该网址区分大小写,因此我想重定向输入小写字母的任何人' m'。

知道它为什么不起作用?

RewriteRule ^www.junaphotography.com/100moments$ http://www.junaphotography.com/100Moments/ [L,QSA]

1 个答案:

答案 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]