我需要将对Web的特定子文件夹中的所有aspx文件的调用重定向到具有.php扩展名的相同名称和路径。
例如
/onlinehelp/default.aspx
将转到/onlinehelp/default.php
/onlinehelp/stuff/junk.aspx
将转到/onlinehelp/stuff/junk.php
看起来很简单,但我无法让它发挥作用。我认为这样可行:
RedirectMatch 301 (/onlinehelp/.*)\.aspx$ http://www.mydomanin.com$1.php
我错过了什么?
答案 0 :(得分:0)
.htaccess文件位于子文件夹/ onlinhelp /中,我需要重定向。