【发布时间】:2017-03-07 07:46:57
【问题描述】:
我正在尝试使用 htaccess 更改域的名称,这是我想要的:
http://olddomaine.com/subname/* 到 http://newdomaine.com/*
我正在使用这个解决方案,但是页面只是加载而没有任何内容:(:
Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteCond %{HTTP_HOST} !^olddomaine\.com$
RedirectMatch 301 ^/subname/$ http://newdomaine.com/
#RewriteRule (.*) http://newdomaine.com/$1 [R=301,NC]
#RewriteRule ^subname/(.*) http://newdomaine.com/$1 [R=301,NC]
【问题讨论】:
标签: .htaccess mod-rewrite subdomain url-redirection