phpstudy中apache的默认根目录的配置

  默认配置文件是:vhosts.conf。

  安装laravel后需要把根目录配置到public。

  下面的配置需要在本地计算机的host文件配置域名,一个是“localhost”,一个是“www.gohosts.com”域名。下面第一个配置是“localhost”访问,第二个配置是“www.gohosts.www”域名访问。

<VirtualHost _default_:80>
DocumentRoot "C:\phpStudy\PHPTutorial\WWW\public"
    ServerName localhost
    ServerAlias localhost
  <Directory "C:\phpStudy\PHPTutorial\WWW\public">
#下面被注释的代码,用“localhost”访问时会禁止访问
#Options -Indexes -FollowSymLinks +ExecCGI Options FollowSymLinks ExecCGI AllowOverride All Order allow,deny Allow from all Require all granted </Directory> </VirtualHost> <VirtualHost *:80> DocumentRoot "C:\phpStudy\PHPTutorial\WWW\public" ServerName www.gohosts.com ServerAlias gohosts.com <Directory "C:\phpStudy\PHPTutorial\WWW\public"> Options FollowSymLinks ExecCGI AllowOverride All Order allow,deny Allow from all Require all granted </Directory> </VirtualHost>

 

posted @ 2019-02-16 17:51  孤舟残月浅笑嫣然  阅读(2973)  评论(0编辑  收藏  举报