这是我的/etc/apache2/sites-availables/mysite.com文件配置
ServerAdmin LOLILOL@LOL.com
ServerName www.example.com
Redirect permanent / http://www.example.com/
ServerAlias example.com
DocumentRoot /home/example/www
SuexecUserGroup example example
<Directory />
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order deny,allow
Allow from all
</Directory>
<Directory /home/example/www>
Options FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
有人可以告诉我在哪里可以找到将非www重定向到www的问题吗?
PS:我无法从http://example.com访问我的网站(仅限http://www.example.com /)
请帮助我!!!!
答案 0 :(得分:0)
我是在.htaccess中完成的。
RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L]