react-router-tutorial
react-router-tutorial copied to clipboard
Error: Location "lessons/11-productionish-server/index.html" did not match any routes
trafficstars
I want people visit my project via "http://www.*****.com"
so i use the following to output:

then i import this bundle.js in the html, code as follow:
<!doctype html public="storage">
<html>
<meta charset=utf-8/>
<title>My First React Router App</title>
<link rel=stylesheet href=index.css>
<div id=app></div>
<script src="bundle.js"></script>
but when i open this html in the browser, it send this error.I want to know why and how to resolve this question

You probably want to use a starter kit or a boilerplate rather than this lesson to start your site. Try googling react router starter kit and pick one you think have the parts you need.
From your error it looks like your pathing is wrong.