apache rewriterrule前缀用www代替www



例如:

RewriteEngine On  
Rewritecond %{HTTP_HOST} !^www.hslab.nl
RewriteRule (.*) http://www.hslab.nl/$1 [R=301,L]

它将添加www部分到url,如果它不存在。为什么不能是www以外的东西,比如wwwwwww?当我这样做的时候,我得到一个404。

根据您展示的样品,您可以尝试以下操作吗?请确保在测试url之前清除浏览器缓存。

RewriteEngine ON
##Rule when www is present in URL so add only www to url.
Rewritecond %{HTTP_HOST} ^(www).hslab.nl
RewriteRule ^ http://%1%1.hslab.nl%{REQUEST_URI} [NE,R=301,L]
##Rule when www is NOT present in URL, hence add wwwwww to url as per OP
Rewritecond %{HTTP_HOST} !^www.hslab.nl
RewriteRule ^ http://wwwwww.hslab.nl%{REQUEST_URI} [NE,R=301,L]

相关内容

  • 没有找到相关文章

最新更新