如何使用apache2.2 / php响应426升级所需的http状态代码?

时间:2012-04-08 00:33:17

标签: apache http apache2 http-status-code-404

我想使用apache2和/或php返回状态代码426 Upgrade Required。

我该怎么做?

我只找到了mod_rewrite,可以使用http状态代码设置重定向。

1 个答案:

答案 0 :(得分:0)

mod rewrite完成工作......

<VirtualHost *:80>
        ServerName mydomain.com
        RewriteEngine on
        RewriteRule .* - [R=426,L]
</VirtualHost>