Redirect *.appspot.com To Custom Domain: Google App Engine (django)
I'm directly putting here some sample code of mine to get better picture. url.py (r'^robots\.txt$', 'myapp.views.robots'), (r'^$', 'myapp.views.home'), views.py def home(request
Solution 1:
If your custom domain is working, add a canonical tag to your pages. This should notify search engines which domain you prefer when same content is available from multiple domains.
<link rel="canonical" href="https://example.com/" />
Post a Comment for "Redirect *.appspot.com To Custom Domain: Google App Engine (django)"