htaccess从www重定向到正常域,但一个文件夹除外

时间:2015-03-29 16:38:15

标签: apache .htaccess redirect

我需要从www.domain.com重定向到domain.com除了一个文件夹“/ service / *”之外的所有电话。例如

http://www.domain.com/ => http://domain.com/
http://www.domain.com/users/* => http://domain.com/users/*
http://www.domain.com/service/* => http://www.domain.com/service/*

我无法写出正确的.htaccess规则。

我当前的htaccess文件:

RewriteEngine on

RewriteCond %{HTTP_HOST} ^www\.(.*) [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

RedirectMatch 403 /\..*$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php

0 个答案:

没有答案