Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
258 views
in Technique[技术] by (71.8m points)

mongodb - Hello I have problem with my request to db (React-mongo)

I followed a nice tutorial on udemy, MERN app, and when it's hosted on Heroku I have no problem

When I host it on my VPS i can naviguate throw my different pages but i don't have response from database , instead they say :

 "You need to enable JavaScript to run this app." 

and the response is my

index.html

I had to configure htaccess like this to actually see the app:

Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.html [QSA,L]

In my server.js i did like this:

app.use('/', express.static(__dirname + '/'))
app.get('/*', (req, res) => {
res.sendFile(path.resolve(__dirname, 'index.html'))
})

Proxy :

"proxy": "http://exemple.com:5000",

Please let me know what else to try to debug this issue,i can give any other code lines if needed .

Hope someone can deliver me from this stuggle !

Thx Julien

question from:https://stackoverflow.com/questions/66051937/hello-i-have-problem-with-my-request-to-db-react-mongo

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...