我正在使用 Xamp 创建一个网站,我有一个名为 HTML 的文件夹,其中有一个名为 的页面Cart.html
,文件夹 HTML 位于htdocs
其中,我希望Cart.html
在浏览器中输入 localhost 后立即显示。那就是当我输入时http:// localhost/
,应该出现 Cart.html 页面。我做不到,你能建议我怎么做吗?
问问题
1296 次
3 回答
0
Simple HTACCESS rule:
Redirect 301 index.html Cart.html
Assuming they are in the same folder, otherwise replace with whatever needed
于 2014-06-02T11:35:55.127 回答
0
Rename the cart.html to index.html & put it in htdocs as 'htdocs/index.html'
于 2014-06-02T11:37:23.310 回答
0
您可以创建一个包含以下内容的 .htaccess 文件。这里唯一的问题是任何子文件夹都会寻找“Cart.html”作为其默认页面
DirectoryIndex Cart.html
如果您根本不需要 index.html 文件,我建议您删除它并将此 DirectoryIndex 改为
DirectoryIndex index.html Cart.html
这将导致所有文件夹首先查找“index.html”,如果它不存在,它将使用“Cart.html”
于 2014-06-02T12:26:48.403 回答