YII模块实现绑定二级域名主要有如下步骤:
首先在配置文件设置:
array(
'urlFormat' => 'path','showScriptName' => false,//注意false不要用引号括上
'urlSuffix' => '.html','rules' => array(
'http://test.jb51.cc'=>array('/blog','urlSuffix'=>”,'caseSensitive'=>false),),
blog 为一个模块,如果在blog模块下还存在第二个控制器(这里以comment为例),则需要多写一个规则,如下:
array(
'urlFormat' => 'path','http://test.jb51.cc/comment-'=>array('/blog/comment/','urlSuffix'=>'.html',
如要访问blog下的某一条评论的URL会是:http://test.jb51.cc/comment-1.html
本在地服务器的情况:
一、在YII配置中设置了还不够的,还需要在DNS服务器中把test.jb51.cc二级域名解析到程序服务器,可以在hosts中的最后加入
rush:xhtml;">
127.0.0.1 www.jb51.cc test.jb51.cc
二、还需要在apache服务器的http.conf中添加:
rush:xml;">
NameVirtualHost *:80
ServerAdmin kane@jb51.cc
DocumentRoot E:/wamp/www/k1029
ServerName test.jb51.cc
ErrorLog logs/test.jb51.cc-error_log
CustomLog logs/test.jb51.cc-access_log common
如果需要绑定多个二级域名,则只要重复添加即可.