php 应用程序的虚拟目录 asp 重定向器有必要吗?
我为我的 php 应用程序创建了一个虚拟目录。
现在我收到“目录列表被拒绝 此虚拟目录不允许列出内容。”
我是否需要制作某种重定向的虚拟index.asp 文件(或首选:仅显示index.php)或如何解决此问题? 我对网络服务器的访问受到限制,但 index.php 设置为默认值
I created a virtual directory for my php app.
Now I get the "Directory Listing Denied
This Virtual Directory does not allow contents to be listed."
Do I need to make some kind of dummy index.asp file that redirects (OR PREFERRED: just displays index.php) or how to solve this?
I have restricted access to webserver, but index.php is set to be default
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您使用的是 IIS,您可能需要添加 index.php 作为默认索引文件。
转到开始菜单 ->设置->控制面板->管理工具
或者可能
开始->控制面板->性能和维护->管理工具
双击“Internet 信息服务”或“IIS”
在左侧的树中,打开 Web 文件夹服务器计算机,然后找到您要配置的网站的条目
右侧- 单击该网站并选择“属性”
单击“文档”选项卡
确保“启用默认值”选中“文档”
单击“添加”
输入 index.php 并单击“确定”
再次单击“确定”
Assuming you are using IIS, you probably need to add index.php as a default index file.
Go to Start Menu -> Settings -> Control Panel -> Administrative Tools
or possibly
Start -> Control Panel -> Performance and Maintenance -> Administrative Tools
Double-click "Internet Information Services" or "IIS"
In the tree on the left, open up the folder for the web server computer, then locate the entry for the website you want to configure
Right-click that website and select "Properties"
Click the "Documents" tab
Make sure "Enable Default Document" is checked
Click "Add"
Enter index.php and click "OK"
Click "OK" again