码迷,mamicode.com
首页 > 其他好文 > 详细

nginx中,加路径或者路由时报错解决

时间:2018-12-21 13:01:48      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:size   class   cat   pre   oca   nginx   listen   代理   span   

  当我们正常配完nginx时,此时如果在域名的后面加入路径或路由去解析时可能会报一个404的错误,

这个问题其实就是因为我们没有给nginx配路由而已,或者给路由加一个try_files即可,这样就能自动搜索对应的路由了

 

 server {
        listen       80;
        server_name  localhost;
        root C:\Users\Administrator\Desktop\dist;
        autoindex on;
        index  index.html index.htm;
        location /{
            root C:\Users\Administrator\Desktop\dist;。
            try_files $uri /index.html;
            index index.html index.htm;
         }
    }

这是除了没有配代理的完整配置

 

nginx中,加路径或者路由时报错解决

标签:size   class   cat   pre   oca   nginx   listen   代理   span   

原文地址:https://www.cnblogs.com/yspace/p/10153711.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!