Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Emulate a 403 error page

I know you can send a header that tells the browser this page is forbidden like:

header('HTTP/1.0 403 Forbidden'); 

But how can I also display the custom error page that has been created on the server for this type of error?

By default, just sending the header displays a white page, but I remember a while back reading that you can use the customer error page. Does anybody know?

like image 322
NightHawk Avatar asked Feb 21 '11 02:02

NightHawk


1 Answers

Just echo your content after sending the header.

header('HTTP/1.0 403 Forbidden');  echo 'You are forbidden!'; 

forbidden

like image 60
alex Avatar answered Sep 23 '22 15:09

alex