HTML文件结构的最佳做法?

时间:2019-01-22 06:18:10

标签: html web

我想做一个简单的小网站,但老实说,我不太确定如何构建文件。 在链接下方显示html页面

  

samplesite.com/test

我应该使用:

  

main / test / index.html

或者:

  

main / test.html

2 个答案:

答案 0 :(得分:0)

默认情况下,将主页面(打开页面)上载到index.html文件夹时应为apache /public_html coz,它将寻找index.html(如果使用php,则为php),因此如果您的网站为www.dummy.com,默认情况下,您访问的网站为index.html,并且要获得test.html,您必须使用www.dummy.com/test.html

答案 1 :(得分:0)

无论是哪个域,Web浏览器都会始终在您项目的index.html中查找。因此domain.com/index.html是必经之路。

根据标题回答问题。对于html file structure,最好将index.html放在根目录/项目目录中:

enter image description here

将其他web assets放在不同的目录中将有助于您更好地组织文件,还可以下载一些设计/模板框架,例如zurb foundation并检查文件结构。