1👍
✅
To define the root url you have to add this pattern ‘^$’:
url(r'^$', view)
Then it matches to your case https://blogpod.herokuapp.com/
Source:stackexchange.com
1👍
To define the root url you have to add this pattern ‘^$’:
url(r'^$', view)
Then it matches to your case https://blogpod.herokuapp.com/