.htaccess将每个请求重定向到索引

时间:2016-03-05 19:03:30

标签: php apache .htaccess server

我正在尝试将每个请求重定向到我的目录,其子目录或其文件到index.php,但我无法这样做。

这是我的网址 http://www.hypovps.in/images/internal-notes-files/26422supportsmallbiz.jpg

我在图片中放了.htaccess。

我想重定向来自

的每个请求
http://www.hypovps.in/images
http://www.hypovps.in/images/internal-notes-files
http://www.hypovps.in/images/internal-notes-files/26422supportsmallbiz.jpg

或/ images / to index.php

中的任何其他子目录/文件

非常感谢任何帮助

感谢

1 个答案:

答案 0 :(得分:0)

您可以使用RedirectMatch将/ images *重定向到/index.php

RedirectMatch ^/images/.+$ /index.php