本文介绍了YII模块实现绑定二级域名的方法,yii框架绑定二级域名的例子,需要的朋友参考下.
YII模块如何实现绑定二级域名?
主要步骤:
首先,在配置文件设置:
复制代码 代码示例:
'urlManager' => array(
'urlFormat' => 'path',
'showScriptName' => false, //注意false不要用引号括上
'urlSuffix' => '.html',
'rules' => array(
'http://test.jb200.com'=>array('/blog', 'urlSuffix'=>”, 'caseSensitive'=>false),
),
blog 为一个模块 ,如果在blog模块下还存在第二个控制器(这里以comment为例),则需要多写一个规则,如下:
'urlManager' => array(
'urlFormat' => 'path',
'showScriptName' => false, //注意false不要用引号括上
'urlSuffix' => '.html',
'rules' => array(
'http://test.jb200.com'=>array('/blog', 'urlSuffix'=>”, 'caseSensitive'=>false),
'http://test.jb200.com/comment-<id:w+>'=>array('/blog/comment/', 'urlSuffix'=>'.html', 'caseSensitive'=>false),
),
如要访问blog下的某一条评论的URL会是:http://test.jb200.com/comment-1.html
本在地服务器的情况:
一、在YII配置中设置了还不够的,还需要在DNS服务器中把test.jb200.com二级域名解析到程序服务器,可以在hosts中的最后加入
127.0.0.1 www.jb200.com test.jb200.com
二、还需要在apache/ target=_blank class=infotextkey>apache服务器的http.conf中添加(相关阅读:apache基于域名的虚拟主机配置实例 linux apache绑定多域名的方法):
复制代码 代码示例:
NameVirtualHost *:80
<VirtualHost *:80>
ServerAdmin kane@jb200.com
DocumentRoot E:/wamp/www/k1029
ServerName test.jb200.com
ErrorLog logs/test.jb200.com-error_log
CustomLog logs/test.jb200.com-access_log common
</VirtualHost>
如果需要绑定多个二级域名,重复添加域名就可以了.