1

.htaccess我正在尝试使用以下配置重写我的域以转到我的子域:

RewriteEngine on
RewriteCond %{http_host} ^example.com [nc]
RewriteRule ^(.*)$ http://sub.example.com/$1 [R=301,NC ]

我错过了什么?

4

1 回答 1

0

NC 标志后不允许有空格,请将您的代码替换为:

RewriteEngine on

RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
RewriteRule ^ http://sub.example.com%{REQUEST_URI} [R=301,NC,L]
于 2013-10-25T16:33:23.807 回答