热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Apache添加虚拟目录注意事项

添加虚拟目录<IfModulealias_module>Aliassww"C:xampphtdocstest"<IfModule>出现限制权限访问,Accessforbidden!Youdon&39;t

添加虚拟目录 

  1.   
  2. Alias /sww/ "C:/xampp/htdocs/test/"  
  3.  

出现限制权限访问, 

Access forbidden! You don&#39;t have permission to access the requested object. It is either read-protected or not readable by the server. 

If you think this is a server error, please contact the webmaster. 

Error 403 localhost 2011/8/26 17:36:49 

Apache/2.2.17 (Win32) mod_ssl/2.2.17 OpenSSL/0.9.8o PHP/5.3.4 mod_perl/2.0.4 Perl/v5.10.1

需添加目录设置,代码如下:

  1. "C:/xampp/htdocs/test/">  
  2. AllowOverride None  
  3. Options None  
  4. Order allow,deny  
  5. Allow from all  
  6.  

推荐阅读
author-avatar
优雅的鼻涕泡
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有