Forum Moderators: phranque
410 Gone' instead of using '404 Not Found' when a page of content is no longer available, and will not be coming back. www.example.com/somepage.php?parameter=value is a URL', there is one very important point within the HTTP specs to take careful note of. www.example.com/somepage.php and the appended parameter=value part is 'data to be used by the resource found at the aforementioned URL'. www.example.com/somepage.php?someparam=somevalue&page=23456 the returned status code was "HTTP/1.1 410 Gone" and the verbose error message said: [b]Gone[/b]
The requested resource
/somepage.php
is no longer available on this server and there is no forwarding address. Please remove all references to this resource.
Apache/2.2.2 (Fedora) Server at example.com Port 80
404 Not Found" it would be www.example.com/somepage.php?someparam=somevalue&page=23456 that is Not Found. 410 Gone" the message says that /somepage.php no longer exists, and to remove all references to it. /somepage.php whatever the attached parameters, not just the ones you requested now". RewriteRule ^test12345 - [G] example.com/test12345