Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to solve the problem of Nginx configuring React project report 404

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces the relevant knowledge of "Nginx configuration React Project report 404 how to solve", the editor shows you the operation process through the actual case, the operation method is simple, fast and practical. I hope this article "Nginx configuration React Project report 404 how to solve" article can help you solve the problem.

Code:

Location / demo {

Root E:/

Index index.html index.htm

}

There is a problem with this configuration, which can only be accessed by http://localhost/demo/.

If you want to visit other interfaces such as http://localhost/demo/page1, you can't find the page.

However, when developing, there is really no problem and can be accessed, so Yu thought, is it necessary to use node for the project? No way, maybe it's because I can't configure it.

Solution method

Finally, I found a way to add an extra line to someone else's nginx.config.

Location / demo {

Root E:/

# with this, you can configure path on the route directly after url.

Try_files $uri / demo/index.html

Index index.html index.htm

}

This is the end of the content about "Nginx configuration React Project report 404 how to solve". Thank you for reading. If you want to know more about the industry, you can follow the industry information channel. The editor will update different knowledge points for you every day.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report