作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
任何人都可以帮助解决以下问题:
我正在使用 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>
关于wamp - 您无权访问此服务器上的 [自定义别名],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26170331/
我是一名优秀的程序员,十分优秀!