我如何配置 http.conf 来做到这一点:
当我向 localhost/myfolder/index.html 请求时,它将显示 /myfolder/myfile.html 的内容
求帮助
我如何配置 http.conf 来做到这一点:
当我向 localhost/myfolder/index.html 请求时,它将显示 /myfolder/myfile.html 的内容
求帮助
在 Apache 中,您可以使用Alias
指令,例如:
Alias /myfolder/index.html /somewhere/myfolder/myfile.html
或者你可以使用mod_rewrite
,例如:
RewriteEngine On
RewriteRule ^/myfolder/index\.html$ /myfolder/myfile.html