【发布时间】:2012-06-05 07:25:18
【问题描述】:
如何配置 http.conf 来做到这一点:
当我向 localhost/myfolder/index.html 请求时,它将显示 /myfolder/myfile.html 的内容
求帮助
【问题讨论】:
标签: configuration web-config apache
如何配置 http.conf 来做到这一点:
当我向 localhost/myfolder/index.html 请求时,它将显示 /myfolder/myfile.html 的内容
求帮助
【问题讨论】:
标签: configuration web-config apache
在 Apache 中,您可以使用 Alias 指令,例如:
Alias /myfolder/index.html /somewhere/myfolder/myfile.html
或者你可以使用mod_rewrite,例如:
RewriteEngine On
RewriteRule ^/myfolder/index\.html$ /myfolder/myfile.html
【讨论】: