Is there any way with .htaccess
to send to the 404 page
also the requested page ?
so in other words let say I'm requesting a non existing page like :
domain.com/nonexistingpage.php
goes to
domain.com/404.html?requested=nonexistingpage.php
this is my current .htaccess line so it goes to 404.html
ErrorDocument 404 /404.html
I want to know what to add to get the results like this :
domain.com/404.html?requested=nonexistingpage.php
instead of :
domain.com/404.html
There's normally no need to do so. You can grab the requested page from PHP itself:
I'd recommend the latter since it also contains the query string.