gpt4 book ai didi

php - 在 Wamp 服务器上为 Z​​end 应用程序设置 VirtualHost

转载 作者:可可西里 更新时间:2023-11-01 11:18:53 28 4
gpt4 key购买 nike

我正在按照本教程学习如何使用 ZendFramework 启动项目

http://framework.zend.com/manual/1.12/en/learning.quickstart.create-project.html

当我开始设置虚拟主机时,我遇到了困难。如果我完全按照教程所说的去做,它会向我显示一个错误(在我的所有项目中,zend 与否),说找不到文件。

然后我发现 StackOverflow 上的这个教程非常好用

Can't run zend framework MVC application on WAMP

当我尝试以 zendProject.local/

访问我的应用程序时,按照页面底部的人所说,我遇到了同样的错误

这是我得到的

在主机(Windows/System32/drivers/etc/hosts)文件上

127.0.0.1       blog.local

在 httpd-vhosts.conf 文件上

<VirtualHost 127.0.0.1>
ServerName blog.local
DocumentRoot /blog/public

SetEnv APPLICATION_ENV "development"

<Directory /blog/public>
DirectoryIndex index.php
AllowOverride All
Order allow,deny
Allow from all
</Directory>

你能告诉我我做错了什么吗?当我转到 http://blog.local/

时,浏览器仍然显示 Not Found The requested URL/public was not found on this server

我在 Windows 上运行 WAMP。这是“博客”项目的绝对路径 C:\wamp\www\blog

@Edit RiggsFolly

这是我现在在 httpd-vhosts.conf 文件中得到的

<VirtualHost *:80>
ServerName localhost
DocumentRoot "C:/wamp/www"

<Directory "C:/wamp/www">
AllowOverride All
# make sure this is only allowed to be accessed by the local machine
# then if/when you open one of your other sites up to the internet and somebody uses your IP
# they will get directed here as its the first VH def and then receive a 403 not allowed to access
Require local
</Directory>
</VirtualHost>

<VirtualHost *:80>
ServerName blog.local
DocumentRoot "C:/websites/blog/public"
Options Indexes FollowSymLinks
SetEnv APPLICATION_ENV "development"

<Directory "C:/websites/blog/public">
DirectoryIndex index.php
AllowOverride All
Require all granted
</Directory>
</VirtualHost>

然后我按照您的建议在 C:/中创建了一个名为“websites”的新目录

最佳答案

您需要更具体地指定您的文件夹位置。我猜本教程是为 Unix 编写的,而您使用的是 Windows。

对于 Apache 2.2.x 使用此语法:

NameVirtualHost *:80

<VirtualHost *:80>
ServerName blog.local
DocumentRoot "C:/wamp/www/blog/public"
Options Indexes FollowSymLinks
SetEnv APPLICATION_ENV "development"

<Directory "C:/wamp/www/blog/public">
DirectoryIndex index.php
AllowOverride All
Order Allow,Deny
Allow from all
</Directory>

您最好避免使用 Allow from all 并使用 Allow from localhost 127.0.0.1::1 直到您真正想让整个世界看到您的网站。

对于 Apache 2.4.x 使用此语法:

<VirtualHost *:80>
ServerName blog.local
DocumentRoot "C:/wamp/www/blog/public"
Options Indexes FollowSymLinks
SetEnv APPLICATION_ENV "development"

<Directory "C:/wamp/www/blog/public">
DirectoryIndex index.php
AllowOverride All
Require all granted
</Directory>

注意 NameVirtualHost *:80 Apache 2.4.x 不再需要

同样,您最好避免使用 Require all granted 并使用 Require local,直到您真正想让全世界都看到您的网站为止。

在发问者发表评论后编辑:

没错,这是 Apache 的默认设置。如果您输入一个 url,它找不到虚拟主机定义,因为它将默认为您给它的第一个虚拟主机定义,在您的例子中是博客。

好的,现在您需要为每个其他项目创建一个虚拟主机,最重要的是,第一个 需要是 localhost 并且只允许可以从本地 PC 访问以获得额外的安全性。

现在,我个人会借此机会将我的实际网站移动到\wamp\文件夹结构之外的一个完全独立的文件夹结构,这样就不会与\wamp\www 文件夹和我的其他网站的权限混淆。

因此,例如,创建一个文件夹 c:\websites\www 并在该文件夹中为您的每个项目创建一个文件夹,例如

c:\websites\www\blog
c:\websites\www\project2

然后将您的虚拟主机指向包含站点代码的相关文件夹(如果您愿意,可以在另一个磁盘上)。这允许您专门为每个 VHOSTS 指定 Apache 安全性(允许谁进入该站点)。因此,当您希望客户或 friend 能够在一个站点上玩时,您只需在允许他们玩的同时更改该站点的安全性即可。

像这样:

<VirtualHost *:80>
ServerName localhost
DocumentRoot "C:/wamp/www"

<Directory "C:/wamp/www">
AllowOverride All
# make sure this is only allowed to be accessed by the local machine
# then if/when you open one of your other sites up to the internet and somebody uses your IP
# they will get directed here as its the first VH def and then receive a 403 not allowed to access
Require local
</Directory>
</VirtualHost>

<VirtualHost *:80>
ServerName blog.local
DocumentRoot "C:/websites/www/blog/public"
Options Indexes FollowSymLinks
SetEnv APPLICATION_ENV "development"

<Directory "C:/websites/www/blog/public">
DirectoryIndex index.php
AllowOverride All
Require all granted
</Directory>
</VirtualHost>

<VirtualHost *:80>
ServerName project2.dev
DocumentRoot "C:/websites/www/project2"
Options Indexes FollowSymLinks

<Directory "C:/websites/www/project2">
DirectoryIndex index.php
AllowOverride All
Require local
# this site also available to other PC's on my internal network
Require ip 192.168.0
</Directory>
</VirtualHost>

请记住,对于您创建的每个新虚拟主机站点,您还需要将该服务器名称 (project2.dev) 添加到主机文件中。

hosts file:
127.0.0.1 blog.local
127.0.0.1 project2.dev

希望对您有所帮助。

关于php - 在 Wamp 服务器上为 Z​​end 应用程序设置 VirtualHost,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21719300/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com