I have hosted an app on Redhat Open shift. I didn't change anything but it started redirecting to https://www.plovist.com/app and throwing 404 error. Can anyone help me in solving this?
相关问题
- Wordpress change all 404 to 410 error code
- 404 error when switching between stores when in a
- ARM template deployment of Microsoft.Web/sites/hos
- Why is jQuery ajax get returning a 404 Not found e
- WebSockets on OpenShift do not work with remote cl
相关文章
- How to obtain the enable admission controller list
- Symfony is linked to the wrong PHP version
- Difference between API versions v2beta1 and v2beta
- Zurb Foundation 5, modernizr not found
- hapi.js - 404 route VS static files route
- docker compose: Error while loading shared librari
- What is the Maximum Java Heap Space for SuSE Linux
- Pylons - Changing the regular 404 Not Found page t
Had this issue today after some cname changes. For me it helped to flush the dns chache
Make sure that you have correctly added your alias to your application (www.plovist.com)
I have the same problem and solved by just restarting the openshift application. After that everythink work as expected.
See also this guide for information on how to change CNAME and create an alias.
https://blog.openshift.com/custom-url-names-for-your-paas-applications-host-forwarding-and-cnames-the-openshift-way/
I logged into Godaddy(my DNS) account and found out that in Cnames(Alias)
www
wasn't pointing tomydjango-plovist.rhcloud.com
(URL given by Openshift). Also I pingedmydjango-plovist.rhcloud.com
and it gave a different IP Address than one I had written in A Record. So I pointed in Cname tomydjango-plovist.rhcloud.com
and in A Record pointed www to new IP Address I got after pingingmydjango-plovist.rhcloud.com
. My app started So Openshift changed their IP Address without telling the users. And also there was some problem in my Godaddy Account.I resolved it after 2 hours. The issue was, i was missing "www." in openshift alias domain settings. (previously it was domain.com instead of www.domain.com)
I entered www.domain.com and after updating wordpress siteurl/home settings it worked fine.
These comments really helped: https://stackoverflow.com/a/26337432/385377
Do anything suggested before or just patiently wait for a hour and check. I think it is just temporary problem of DNS servers. I am sure not only in my case :)