A. 在nginx配置文件中location的index文件、htm文件有什么区别
当你访问根目录比如http://127.0.0.1/时 你的index默认配置为index.htm 他就回去读
http://127.0.0.1/index.htm 当然这个index.htm加不加都会读,应为你设置如果网站每当当问一个目录都会先去找这个目录下的index.htm 如果找不到就去找index.html 以此类推,你加什么就去找什么,我一般设置
index index.php index.htm index.html
意思就是 每当访问一个文件夹,先找index.php 到不到就找index.htm找不到再找index.html 找不到就不找了。不执行文件。