URL目录的重定向问题

时间:2015-08-12 14:42:24

标签: apache .htaccess

我试图在我的htaccess文件或我服务器上的httpd.conf文件中添加内容(首选),但我不确定如何操作。

基本上,我需要这个:

https://example.com/example/anything.html

重定向到此:

https://example.com/anything.html

而不只是这个URL。我需要在example

之后删除包含它的每个网址中的目录example.com/

我该怎么做?

1 个答案:

答案 0 :(得分:3)

如果您只是需要重定向,假设renderer.sortObjects = true是有效资源并且如果您直接去那里就不会返回404,那么您只需执行以下操作之一:

https://example.com/anything.html

RedirectMatch 301 ^/example/(.*)$ /$1

或使用mod_rewrite:

Redirect 301 /example/ /