• 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>
  • 相关阅读:
    模块
    time/datetime/random/string/os/sys/shutil/zipfile/tarfile
    模块
    模块
    模块
    2.1
    1.4
    生成器 迭代器
    闭包 装饰器
    函数
  • 原文地址:https://www.cnblogs.com/qingsong/p/10388564.html
Copyright © 2020-2023  润新知