Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通常在 Django 中编程,但在 Apache 中更有意义。我需要对到达端口 80 的任何域的每个请求都重定向到另一个域(在端口 80 上),但是到达任何其他端口的请求仍然应该进来。它不能是永久重定向。我该怎么做?
由于我在 Apache 中将虚拟主机设置为侦听端口 80,因此我不需要告诉重定向指令侦听该端口,因此只需将其添加到侦听端口 80 的虚拟主机中:
RewriteEngine on RewriteRule ^$ http://other-domain.com/ [R=302,L]