1、nginx目录中html目录下放置green 前端项目 监听端口:8181 nginx配置文件配置location时使用root方式 # root 方式 # 方式1 域名直接可访问到 即 localhost:8181 #location / { # root html; # index green/index.html green/index.htm; #} # 方式2 域名直接可访问到 即 localhost:8181 #location / { # ...
1. location /abc/ { root /home/html/;} 1. 可以看到,使用root设置目录的绝对路径时,少了/abc,也就是说,使用root来设置前端非根目录时,nginx会组合root和location的路径。 另外,使用alias时目录名后面一定要加“/” 转载于: nginx貌似没有虚拟目录的说法,因为它本来就是完完全全根据目录来设计并工作的。
使用root会把location路径加上; 使用alias会直接替换location; 使用alias要注意如果location使用斜杠结尾,那么alias也要用斜杠结尾。 location /images { alias/home/wc/nginx.d/images; } 1. 2. 3. index 可以设置默认文件。 不设置index时,访问url需要加上文件名http://abc.myser.com/images/desktop.png; 设...