来自商业系统的软404。使用php重定向页面?

时间:2015-09-11 21:29:03

标签: php redirect http-status-code-404

我们的商务系统在我们模板中的一些我们不再携带的项目中提供了error.html,我想将error.html中的重定向放入我们的404.html

我无法在.htaccess中执行此操作,因为它为项目网址提供服务,我必须删除积压的项目或重定向每个项目。我可以在页面内部进行.php重定向吗?

我尝试添加.php重定向,但出于某种原因注释掉了。这样:

<?
Header( “HTTP/1.1 301 Moved Permanently” );
Header( “Location: https://www.asseenontvhot10.com/404.html” );
exit();
?>

<!--?
Header( “HTTP/1.1 301 Moved Permanently” );
Header( “Location: https://www.asseenontvhot10.com/404.html” );
exit();
?-->

0 个答案:

没有答案