我可以用任何 Apache 标准模块替换重定向状态吗?

我可以用任何 Apache 标准模块替换重定向状态吗?

我们的环境是apache2.2 + mod_perl2 + perl app

perl 应用程序输出 302 Found,但出于 SEO 原因,我想将状态更改为 301 Moved Permanently,仅来自 Google 机器人

如果需要编辑应用程序,我们必须请求其他软件公司。所以我想用 httpd.conf 来解决

答案1

好吧,我会将 mod_alias 与 Redirect 或 RedirectMatch 指令一起使用,对于基本的 301 重定向,类似这样的工作:

Redirect permanent /redirect http://www.example.com

更详细的设置 =>mod_alias 文档

相关内容