开发者

Help with mod_rewrite rule

Need a little help getting the following rule working:

RewriteCond %{HTTP_HOST}            ^asset.*.domainone\.com [NC,AND]开发者_运维百科
RewriteCond %{REQUEST_URI}          !^/FILE/.* [NC]
RewriteRule ^(.*)$              "http://domaintwo\.com/$1" [L]

For requests coming to this server with a domain of 'asset(anything).domain.com' which does not start with 'FILE', redirect to another server.

Thanks.


RewriteCond %{HTTP_HOST} ^asset.*?\.domainone\.com [NC]
RewriteCond %{REQUEST_URI} !^/FILE/.* [NC]
RewriteRule ^/(.*)$ http://domaintwo.com/$1 [R,L]
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜