我想制作一个自定义的301页面,而不是通常的apache。
我将此添加到.htaccess
ErrorDocument 301 /301.php
我做了'#34; design"对于此页面,但如何让它读取.htaccess
中的redirectmatch条目并使用它们?如果那不可能,我可以制作类似if("$_SERVER[REQUEST_URI]" ==)
等的东西,但这需要很长时间。还有另一种方式吗?
编辑:为了澄清任何不理解的人,我想更改默认301页面的html代码,目前对我来说是这样的:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>301 Moved Permanently</title>
</head><body>
<h1>Moved Permanently</h1>
<p>The document has moved <a href="/index.php">here</a>.</p>
</body></html>
我已经制作了自定义版本,但我不知道如何从.htaccess
读取重定向的内容。