我可以使用带有NC和L等标志的Redirect 301
吗?
例如:
Redirect 301 /test.htm /example/test/ [NC, L]
我收到服务器错误,但我不确定是不是因为Redirect 301不允许在语句结尾处使用标记,或者是否是其他内容。
答案 0 :(得分:4)
你提到的标志与mod_rewrite有关,但Redirect
是mod_alias的一部分,并且语法不同。
见这里:https://httpd.apache.org/docs/current/mod/mod_alias.html#redirect
答案 1 :(得分:2)
正如JimDini所说,你需要mod_rewrite
来获得这些旗帜。以下是适合您的代码:
RewriteEngine On
RewriteRule ^test\.html?$ /example/test/ [R=301,NC,L]