我想尝试别名: /htdocs/test/index.php
在我的xampp / apache / conf / extra / httpd-xampp.conf中,我有以下条目:
<IfModule alias_module>
<IfModule mime_module>
Alias /test/ "D:/Installation/xampp/htdocs/test"
<Directory "D:/Installation/xampp/test">
<IfModule php5_module>
<Files "index.php">
php_admin_flag safe_mode off
</Files>
</IfModule>
Order allow,deny
Allow from all
</Directory>
</IfModule>
</IfModule>
当我转到http://localhost/test/时,我会看到显示的目录列表。当我输入此URL- http://localhost/test/时,我希望打开此文件 - /test/index.php。
当我尝试直接转到此URL“localhost / test / index.php”时,我收到“找不到错误404对象”消息。
我做错了什么?
答案 0 :(得分:0)
使用以下命令查找httpd-xampp.conf文件的部分:
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
DirectoryIndex index.html index.htm
</IfModule>
将“index.php”添加到DirectoryIndex行。