1

我有一个在 Linux 中运行的 apache 服务器,我想知道如何重定向 url?我想通过 apache 来做到这一点,而不是通过添加标题或重定向到单个文件中。目标是避免处理 .aspx

示例 1:

VISITING: wwww.myserver.com/file1.aspx
Will take you to: www/myserver.com/file2.php

示例 2:

VISITING: www.myserver.com/file1.aspx?command1=set&command2=set
Will take you to: www.myserver.com/file2.php?command1=set&command2=set
4

1 回答 1

2

在不使用 mod_rewrite 的情况下,您可以在 vhost/server 配置或 htaccess 文件中简单地使用 mod_alias:

Redirect 301 /file1.aspx /file2.php
于 2012-08-28T20:42:35.973 回答