【发布时间】:2018-04-02 06:46:56
【问题描述】:
使用.htaccess 文件如何让我的网址显示为www.example.com 而不是www.example.com/index.html?
【问题讨论】:
-
在问这个问题之前,您是否在本网站上搜索过“.htaccess index.html”?
使用.htaccess 文件如何让我的网址显示为www.example.com 而不是www.example.com/index.html?
【问题讨论】:
你可以使用它
# This allows you to redirect index.html to a specific subfolder
Redirect /index.html http://example.com/
或
# Provide Specific Index Page (Set the default handler)
DirectoryIndex index.html
小心地将其添加到 .htaccess
【讨论】: