Is it OK to redirect error pages instead of using a local 404 page? I created a 404 page but wanted to make it look like my regular website and to do so have to have it pull php files. As a result in my htaccess file I have to have it
ErrorDocument 404 xhttps://www.onlineunitedstatescasinos.com/notfound.php
instead of
ErrorDocument 404 /notfound.php
Which I know is an actual redirect instead of using a general 404.html page.
So is using the top line example in the htaccess file considered OK to do (without the "x" of course before the url)?
Thanks