Вы можете сделать это, добавив следующее правило в .htaccess.
ErrorDocument 404 /404.php
В вашем 404.php вы можете написать
<h3>
Page Not Found.
</h3>
<div>
<p>Apologies, but the page you requested could not be found.</p>
<ul>
<li>You may have mistyped the page address.</li>
<li>You may have clicked on a link that has not been updated.</li>
<li>We have recently changed our site structure and the page has been moved to new location.</li>
</ul>
</div>
Вы можете настроить это, чтобы отобразить его правильно.
Надеюсь, это поможет:)