我试图在我的htaccess文件或我服务器上的httpd.conf文件中添加内容(首选),但我不确定如何操作。
基本上,我需要这个:
https://example.com/example/anything.html
重定向到此:
https://example.com/anything.html
而不只是这个URL。我需要在example
example.com/
我该怎么做?
答案 0 :(得分:3)
如果您只是需要重定向,假设renderer.sortObjects = true
是有效资源并且如果您直接去那里就不会返回404,那么您只需执行以下操作之一:
https://example.com/anything.html
或
RedirectMatch 301 ^/example/(.*)$ /$1
或使用mod_rewrite:
Redirect 301 /example/ /