[Answer]-Rewrite rules for manage.py runserver like .htaccess for apache

1👍

You can use django URL dispatcher for this. It’s more “django way” and it will work fine on production server as well as on development server. See documentation. Also on production server you need to disable processing of static files that match this the regular expression.

Leave a comment