标签: apache .htaccess redirect mod-rewrite
我使用htaccess文件将所有请求重定向到index.php?q = ..但是,为了使其工作,用户需要为apache启用mod_rewrite。如果用户没有启用mod_rewrite,我如何将用户链接到自定义错误页面(因为我显然无法使用mod_rewrite函数)?
答案 0 :(得分:0)
<IfModule !mod_rewrite.c> ErrorDocument 403 your_custom_error_page.php </IfModule>