gpt4 book ai didi

wamp - 您无权访问此服务器上的 [自定义别名]

转载 作者:行者123 更新时间:2023-12-04 02:40:42 27 4
gpt4 key购买 nike

任何人都可以帮助解决以下问题:
我正在使用 wamp 在我的 chrome 浏览器中运行项目。
添加指向我的项目目录 c:/dev/myProject 的 newAlias 后
我收到禁止消息:您无权访问此服务器上的/newAlias。
我可以访问默认别名,例如 phpmyadmin、webgrind...
但我无法访问我自己的。
我在位于 c:/wamp 的 Win 8.1 64bit 上使用 WampServer 版本 2.5 64bit。
我从网上尝试了基本的东西,但没有运气。
有什么建议?

编辑:newAlias 的内容:

Alias /bs1/ "c:/_DEV_/git/NewProject/www/" 

<Directory "c:/_DEV_/git/NewProject/www/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
Allow from all
</Directory>

最佳答案

不要更改您 httpd.conf 的那部分.这几行控制对安装 Apache 的驱动器的根文件夹的访问。因此,您只需通过方便的 hack 就可以完全访问任何人。

通过 Apache 保护访问的过程是拒绝对根文件夹及以下所有内容的所有访问,然后是 选择性 允许特定站点访问驱动器的特定区域/文件夹。

更好的解决方案是更改 httpd.conf回到原来的样子,并在您的别名定义中进行更改。像这样 :-

Alias /bs1 "c:/_DEV_/git/NewProject/www/" 

<Directory "c:/_DEV_/git/NewProject/www/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Require local <-- to develop on this PC
Require ip 192.168.1 <-- to access the server from another PC on your network
Require all granted <-- to allow the world to see the beauty of your site
</Directory>

使用虚拟主机而不是别名来控制每个站点实际上是一个更好的主意。

这是原因和方法:- WAMPServer 2.5 The Homepage, Your Projects Menu and the need for Virtual Hosts

关于wamp - 您无权访问此服务器上的 [自定义别名],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26170331/

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