0

我如何配置 http.conf 来做到这一点:

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

求帮助

4

1 回答 1

0

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

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

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

RewriteEngine On
RewriteRule ^/myfolder/index\.html$ /myfolder/myfile.html
于 2012-05-31T03:03:00.230 回答