我最近从 asp.net 主机转移到 PHP 主机。我正在尝试使用 .htaccess 设置旧网址的 301 重定向。这是我想要完成的事情:
old url: http://www.vasanth.in/downloads/download.aspx?file=file.zip
new url: http://www.vasanth.in/downloads/download.php?f=file.zip
我尝试了以下方法:
RedirectMatch 301 /downloads/download.aspx\?file=(.*)$ http://www.vasanth.in/downloads/download.php\?f=$1
这似乎不起作用?我究竟做错了什么?