在Nginx服务器上找不到404页面的直接URL访问

时间:2020-04-18 08:45:15

标签: nginx nginx-location nginx-reverse-proxy nginx-config

我已将我的node.js应用程序部署在nginx服务器上,并且已启动并正在运行。我可以使用我购买的域名访问该应用程序。例如[www.myshopping.com],这是虚拟名称。 当我通过应用程序导航到其他URL时,它正在工作。 例如:www.myshopping.com/cart通过网站上的导航链接对我来说效果很好。

但是当我复制此URL(www.myshopping.com/cart)并将其粘贴到浏览器地址栏中时,它给了我404页面未找到

我的nginx.conf文件设置如下

http {
       include       mime.types;
      default_type  application/octet-stream;


      server {
         listen       80;
         server_name  myshopping.com www.myshopping.com;
         root   /usr/share/nginx/build;
         index index.html index.htm;

         location / {

         }

       }
     } 

如何解决直接访问特定URL的问题。我是nginx世界的新手

0 个答案:

没有答案