The requested URL / was not found on this server in Google App Engine for Vue .js
30 views
Skip to first unread message
Niraj Patoliya
unread,
Aug 25, 2020, 12:41:54 PM8/25/20
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google App Engine
I have deployed code in Google app engine server with route mode changes from mode: 'hash' to mode: 'history'. After this change, I am getting this error.
Error: Not Found The requested URL /login was not found on this server.
Here is app.yaml
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /
static_files: index.html
upload: index.html
- url: /(.*)
static_files: \1
upload: (.*)
Can anybody please help me...
Aditya
unread,
Aug 26, 2020, 4:45:43 PM8/26/20
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google App Engine
The error message indicates that the specified URL is invalid. Please check the value assigned for 'url' in main.py and assign it to app.yaml.