ultimatebuster
New Member
- Messages
- 1
- Reaction score
- 0
- Points
- 0
Can you redirect all 404 pages to index.html? How?
ErrorDocument 404 /error_pages/404.php
<?php
mail("yourEmailAddr@example.com","404 Error On Site","Requested page: ".$_SERVER['REQUEST_URI']."\n\nIP Address: ".$_SERVER['REMOTE_ADDR']."\n\nUser agent: ".$_SERVER['HTTP_USER_AGENT']);
header("Location:http://www.example.com/index.html");
?>