我正在建立一个静态Html网站。当用户第一次进入我的网站时,他/她首先被重定向到文件夹localhost/creative
上的index.php
,然后使用require_once
处理index.php
后,从localhost/creative/themes/
目录中提取所有Html文件(如header.php)。在整个过程中,如果用户输入了错误的URL,我将无法重定向他/404错误页面404错误页面
在我的.htaccess
文件中
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /creative/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /creative/ [L]
</IfModule>
我尝试使用Error Document 404 /themes/404.php
,但它不工作。如果url
是错误的,谁能告诉我如何将我网站上的用户重定向到404.php
?我希望在php
中进行处理。
1条答案
按热度按时间o2rvlv0m1#
代替
用途