嗨,我的问题是,是否可以将 index.html#box02 设置为我的主页而不是 index.html?
我正在建立一个带有平移 div 的网站。
就像http://demos.flesler.com/jquery/scrollTo/
由于平移效果,我将整个网站设计在一个 html 文件 - index.html 上。我想这不是最好的方法,但我不想破坏动画效果。或者还有其他更好的方法吗?
所以我所做的是创建 index.html 并创建许多 div,例如:
example.com/index.html (Gallery)
example.com/index.html#box01 (About Us)
example.com/index.html#box02 (Homepage)
example.com/index.html#box03 (Contact Us)
我尝试使用以下方式重定向:
- .htaccess(尝试在 .htaccess 中输入“DirectoryIndex index.html#box02”但无法正常工作)
尝试在 index.html 中使用 javascript 进行重定向:
<script type ="text/javascript"> function init(){ location.href = "index.html#box02"; } </script> <body onLoad="init()">
(但有一个滞后时间,因为它先加载 index.html,然后加载 index.html#02)
是否可以直接加载 index.html#box02 而不是 index.html?)
想在这里获得更有经验的网页设计师的帮助吗?