.htaccess show 404, 403, 500, error pages via PHP

后端 未结 3 1658
小鲜肉
小鲜肉 2020-12-22 06:26

How can I make .htaccess display errors from a PHP file? I mean when I search a non-existing file .htaccess should show me an error page from error.php, but error.php needs

3条回答
  •  醉梦人生
    2020-12-22 06:49

    //Custom 403 errors
    ErrorDocument 403 your-path/403.php
    
    //Custom 404 errors
    ErrorDocument 404 your-path/404.php
    
    //Custom 500 errors
    ErrorDocument 500 your-path/500.php
    

提交回复
热议问题