yii1.1 虚拟主机

win7:
------------------------------------------------------------------------

NameVirtualHost *:80
<VirtualHost *:80>
  DocumentRoot "D:/wampserver/www/"
  ServerName localhost
</VirtualHost>

 

<VirtualHost *:80>
  ServerName www.member.com
  DocumentRoot "D:/wampserver/www/MemberShip/"
  <Directory "D:/wampserver/www/MemberShip/">
    DirectoryIndex index.php index.php3 index.html index.htm
    #重写需加以下第一行
    AllowOverride All
    Options Indexes FollowSymLinks
    Order Allow,Deny
    Allow from all
  </Directory>
</VirtualHost>






ubuntu:
------------------------------------------------------------------------------
在apache2.4中,虚拟主机的目录是通过/etc/apache2/sites-available中配置的,默认情况下,apache有一个默认的虚拟主机文件叫000-default.conf。我们将会复制000-default.conf文件内容到我们新的虚拟主机配置文件中。
sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/yiidemo.conf 

编辑该配置文件,用来指向刚才设定的目录。

sudo vim  /etc/apache2/sites-available/yiidemo.conf

编辑后的配置如下(删除了额外的注释):

(linux下注意,如果是复制粘贴以下内容,注意前面的空格需要替换,linux和windows下的编码不一样)

NameVirtualHost *:80
<VirtualHost *:80>
  DocumentRoot "/var/www/"
  ServerName localhost
</VirtualHost>
<VirtualHost *:80>
  ServerName www.member.com
  DocumentRoot "/var/www/MemberShip/"
  <Directory "/var/www/MemberShip/">
    DirectoryIndex index.php index.php3 index.html index.htm
    #重写需加以下第一行
    AllowOverride All
    Options Indexes FollowSymLinks
    Order Allow,Deny
    Allow from all
  </Directory>
</VirtualHost>

重启apache服务器:
sudo service apache2 restart

修改虚拟主机文件后,禁用默认的虚拟主机配置(000.default.conf),然后启用新的虚拟主机配置,如下所示。

sudo a2dissite 000-default.conf (**这一步不是必须的**)
sudo a2ensite  yiidemo.conf

这一步,将激活yiidemo.conf配置文件。他的作用是生产一份链接到/etc/apache2/sites-enabled/,为什么这样做呢,因为实际上apache2加载的就是该目录下所有的配置文件。而a2dissitea2ensite这两个动作,能更好的管理我们的虚拟主机。

sudo service apache2 restart  

配置虚拟主机,如果你是window系统,可以在C:\Windows\System32\drivers\etc找到host文件,如果你是linux系统可以在/etc/hosts找到host文件,编辑他们加上刚才配置的虚拟主机映射的IP地址。

192.168.*.* www.yiidemo.local  (**IP地址为apache服务器所在的主机地址**)

 




.htaccess文件:

RewriteEngine on

# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ /index.php/$1

 

 

'urlManager'=>array(
'urlFormat'=>'path',
'showScriptName' => false, //注意false不要用引号括上
'rules'=>array(
  'login/login/' => array('login/login/', 'urlSuffix'=>'.html', 'caseSensitive'=>false),

  ),

),

 

你可能感兴趣的:(yii1.1 虚拟主机)