使用 .htacess,我们可以像这样重定向请求:
RewriteRule \.(?:txt)$ handle_txt.php
它将所有请求从 .txt 重定向到以所需方式发送输出的 handle_txt.php。
我想让这适用于 django 应用程序,我该怎么做?
我的意思是说,例如,当我开发应用程序时(使用 manage.py runserver),我应该在哪里编写 rewriterule ?
如果我使用 apache 作为服务器,我可以使用 .htaccess。
如果我使用 nginx,我可以使用 nginx confs 进行重定向。(对吗?)开发版本(manage.py runserver)呢?