在htaccess中通过文件扩展名重定向

时间:2016-12-21 17:23:23

标签: .htaccess

我需要将对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

我错过了什么?

1 个答案:

答案 0 :(得分:0)

谢谢...它现在正在......一定是个缓存问题。诅咒负载平衡器!大声笑抱歉。我很感谢回复

.htaccess文件位于子文件夹/ onlinhelp /中,我需要重定向。

相关问题