标签: html apache .htaccess redirect
在我的网站上,我有一个目录/文件夹,里面有一些图片和HTML。我想将尝试访问http://domain.com/folder的用户重定向到http://domain.com/,但不希望请求该目录中的文件重定向到http://domain.com/。当我尝试
Redirect /folder http://domain.com/
它破坏了网站,因为现在它认为所有图像等都不在根目录中。我该如何解决这个问题?
答案 0 :(得分:5)
改为使用RedirectMatch:
RedirectMatch
RedirectMatch ^/folder$ http://example.com/
现在,URI路径必须与/folder完全匹配。
/folder