繁体   English   中英

localhost 显示我在 /usr/local/etc/httpd/extra/httpd-vhosts.conf 中添加虚拟主机时的索引

[英]localhost is showing index of when I added a virtual host in /usr/local/etc/httpd/extra/httpd-vhosts.conf

我用 brew 安装了 apache 并将端口8080更改为80 当我访问localhost时,这向我显示了一个页面“它有效!” 并且该页面位于/usr/local/var/www目录中,文件名为 index.html 但是当我在/usr/local/etc/httpd/extra/httpd-vhosts.conf文件中添加虚拟主机时。

<VirtualHost *:80>
  DocumentRoot "/Users/ranaamir/projects/sample/yii2/backend/web"
  ServerName yii2.example.be
  ServerAlias yii2.example.be
  <directory "/Users/ranaamir/projects/sample/yii2/backend/web">
      Options Indexes FollowSymLinks
      AllowOverride all
      Order Deny,Allow
      Allow from all
      Require all granted
  </directory>
  ErrorLog "/usr/local/var/log/httpd/vjfBackenderror.log"
  CustomLog "/usr/local/var/log/httpd/vjfBackendaccess.log" common
</VirtualHost>

并使用sudo apachectl -k restart命令重新启动服务,并且该主机也添加到/etc/hosts中。

##

127.0.0.1   localhost
255.255.255.255 broadcasthost
::1             localhost
127.0.0.1       yii2.example.be

然后我访问localhostyii2.example.be都显示一个页面,其中只有一行提到Index of /

如果我从httpd-vhosts.conf中删除块<VirtualHost *:80>的代码,那么localhost主机再次显示正确index.html

为什么我的项目没有在虚拟主机 url 而不是index of /运行?

任何帮助将不胜感激!

我已经解决了这个问题,我在httpd.conf文件中几乎没有更改,我们必须提到它们将首先处理哪种类型的文件,所以我只是在index.php的代码块中添加了dir_module

<IfModule dir_module>
  DirectoryIndex index.php index.html
</IfModule>

我希望这将节省您的时间并减少您的压力。 :)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM