任何二级域名,均跳转到www下。本地测试站点:www.phpfensi.com,下面是apache里的配置:
-
- "D:/webroot/phpfensi.com">
- Options -Indexes FollowSymLinks
- Allow from all
- AllowOverride All
-
- ServerAdmin admin@www.phpfensi.com
- DocumentRoot "D:/webroot/phpfensi.com"
- ServerName phpfensi.com:80
- ServerAlias *.phpfensi.com
- RewriteEngine on
- RewriteCond %{HTTP_HOST} ^phpfensi.com
- RewriteRule ^(.*)$ http:
- ErrorLog logs/www.phpfensi.com-error_log
-
注意:“ServerAlias *.phpfensi.com ”这个配置必须有。
方法二:在网站根目录下建立.htaccess文件,讲跳转代码写在这个文件中即可
apache中的配置为:
-
- "D:/webroot/phpfensi.com">
- Options -Indexes FollowSymLinks
- Allow from all
- AllowOverride All
-
- ServerAdmin admin@www.phpfensi.com
- DocumentRoot "D:/webroot/phpfensi.com"
- ServerName phpfensi.com:80
- ServerAlias *.phpfensi.com
- ErrorLog logs/www.phpfensi.com-error_log
-
.htaccess文件中的文件配置为:
- RewriteEngine on
- RewriteCond %{HTTP_HOST} ^phpfensi.com
- RewriteRule ^(.*)$ http:
注意:添加.htaccess文件文件时,必须在apache里配置:
- Options -Indexes FollowSymLinks
- Allow from all
- AllowOverride All
以上三项。“.htaccess文件”的创建方法:在windows下无法直接创建这个文件,需通过文件编辑器创建,我用editplus,应该还有其它工具。
RewriteCond语句的作用类似if语句,执行条件判断。 |