我是zf3的新手并已将GFHub中的ZF3 Skeleton应用程序解压缩到位置/var/www/html/zf2-tutorial
并已成功安装以从URL https://xxx.xxx.xx.xx/zf2-tutorial/public
获取zf3主页
在完成教程时,我发现我必须设置一个虚拟主机来访问网站,如zf2-tutorial.localhost
,所以我按照步骤在zf2-tutorial.conf
文件夹下创建了一个/etc/httpd/conf.d
文件。
ZF2-tutorial.conf
<VirtualHost *:80>
ServerName https://xxx.xxx.xx.xx/zf2-tutorial
DocumentRoot /var/www/html/zf2-tutorial/public
SetEnv APPLICATION_ENV "development"
<Directory /var/www/html/zf2-tutorial/public>
DirectoryIndex index.php
AllowOverride All
Require all granted
</Directory>
我还编辑了我的/etc/hosts
文件以添加
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
xxx.xxx.xx.xx xxx.xxx.xx.xx/zf2-tutorial
我只想通过访问URL
来访问zf3主页https://xxx.xxx.xx.xx/zf2-tutorial/
我正在使用httpd-2.4.6-67.el7.centos.6.x86_64
教程链接https://docs.zendframework.com/tutorials/getting-started/skeleton-application/
答案 0 :(得分:0)
您是否在https.conf文件中包含了新的zf2-tutorial.conf
文件?
# include zf2 tutorial host file
Include /etc/httpd/conf.d/zf2-tutorial.conf
或者配置中的那条路径是否有通配符?
Include /etc/httpd/conf.d/*.conf