index显示httpd中另一个文件的内容

时间:2012-05-31 02:44:28

标签: configuration web-config apache

如何配置http.conf来执行此操作:

当我向localhost / myfolder / index.html请求它会显示/myfolder/myfile.html的内容

寻求帮助

1 个答案:

答案 0 :(得分:0)

在Apache中,您可以使用Alias指令,例如:

Alias /myfolder/index.html /somewhere/myfolder/myfile.html

或者您可以使用mod_rewrite,例如:

RewriteEngine On
RewriteRule ^/myfolder/index\.html$ /myfolder/myfile.html