Get the requested page

222 Views Asked by At

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
2

There are 2 best solutions below

1
On

There's normally no need to do so. You can grab the requested page from PHP itself:

$_SERVER['REDIRECT_URL']
$_SERVER['REQUEST_URI']

I'd recommend the latter since it also contains the query string.

3
On

If your aim is just to get the requested url, you can use

$_SERVER['REQUEST_URI']

or

$_SERVER['REDIRECT_URL']