GithubHelp home page GithubHelp logo

Comments (5)

JonnyBurger avatar JonnyBurger commented on April 26, 2024 1

This is not a React problem but if your single page app is not configured correctly. See https://oliverjam.es/articles/avoid-spa-404 for an explanation of the problem.

from react.

mm0hammadi avatar mm0hammadi commented on April 26, 2024

I configured the web server settings in production. But I probably thought that the problem is with the routes of the project.
thanks

from react.

mm0hammadi avatar mm0hammadi commented on April 26, 2024

Finally, I could find the solution, here is the link which can help you to solve this issue. you just need to copy th code in web.config file in server.
@JonnyBurger
It was fixed.
https://dev.to/sumitkharche/how-to-deploy-react-application-on-iis-server-1ied

from react.

Onkar-Kulkarni-6143 avatar Onkar-Kulkarni-6143 commented on April 26, 2024

@mm0hammadi : The link given is doesn't exist anymore.
Could you please share the web.config file which helped you to resolve issue

from react.

Max7oo avatar Max7oo commented on April 26, 2024

@mm0hammadi : The link given is doesn't exist anymore. Could you please share the web.config file which helped you to resolve issue

The link works for me, but it does not fix my problem. Here's the code anyway:

<?xml version="1.0"?>
<configuration>
 <system.webServer>
 <rewrite>
 <rules>
 <rule name="React Routes" stopProcessing="true">
 <match url=".*" />
 <conditions logicalGrouping="MatchAll">
 <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
 <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
 <add input="{REQUEST_URI}" pattern="^/(api)" negate="true" />
 </conditions>
 <action type="Rewrite" url="/" />
 </rule>
 </rules>
 </rewrite>
 </system.webServer>
</configuration>

from react.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.