zoukankan      html  css  js  c++  java
  • phpstudy中apache的默认根目录的配置

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

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

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

    <VirtualHost _default_:80>
    DocumentRoot "C:phpStudyPHPTutorialWWWpublic"
        ServerName localhost
        ServerAlias localhost
      <Directory "C:phpStudyPHPTutorialWWWpublic">
    #下面被注释的代码,用“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:phpStudyPHPTutorialWWWpublic" ServerName www.gohosts.com ServerAlias gohosts.com <Directory "C:phpStudyPHPTutorialWWWpublic"> Options FollowSymLinks ExecCGI AllowOverride All Order allow,deny Allow from all Require all granted </Directory> </VirtualHost>
  • 相关阅读:
    贝塞尔曲线应用(贝塞尔插值)
    贝塞尔曲线原理(简单阐述)
    STL头文件有哪些及简单介绍
    句柄与MFC对象关系和相互获取
    Reflect
    Set 和 Map 数据结构
    Symbol
    对象的新增方法
    对象的扩展
    数组的扩展
  • 原文地址:https://www.cnblogs.com/qingsong/p/10388564.html
Copyright © 2011-2022 走看看