Hi
I was just wondering how to get the link of the webpage which was not found on my website.
With following .htaccess code, when a non-existing page is requested, user is redirected to my_404.php.
Options -Indexes
ErrorDocument 404 http://mysite.com/my_404.php
If I have to track down what was the link of the page, which was not found, how do I do that??
Just for example, A.php is a valid web page, while b.php is not. So if I am on A.php and try to view b.php (non-existent page) .. .htaccess redirects me to my_404.php on which I see HTTP_REFERER
as A.php .. but what I am looking for is that "somebody tried to view B.php". How do I do that?
Thanks for your help.
EDIT
Please see: I dont want to check in log files. I am asking about something on page. Thanks.