HTML beginner |
|
.htaccess kijkt niet naar de directories, maar naar het domein (de root van de site); Het domein bij u is http://electronics.knome.nl. dus /robot is effectief nodig.
De plaatsing van .htaccess in de directory, is van belang om te weten waar deze file geldig is. dus indien deze in de map robot staat zou dit enkel voor de site http://electronics.knome.nl/robot gelden. Maw http://electronics.knome.nl/test zou geen errors geven.
je mag het volledig adres in ErrorDocument zetten. Maar dit heeft zijn gevolgen:
Citaat: Note that when you specify an ErrorDocument that points to a remote URL (ie. anything with a method such as "http" in front of it), Apache will send a redirect to the client to tell it where to find the document, even if the document ends up being on the same server. This has several implications, the most important being that the client will not receive the original error status code, but instead will receive a redirect status code. This in turn can confuse web robots and other clients which try to determine if a URL is valid using the status code. In addition, if you use a remote URL in an ErrorDocument 401, the client will not know to prompt the user for a password since it will not receive the 401 status code. Therefore, if you use an "ErrorDocument 401" directive then it must refer to a local document.
dus voor lokale errors gebruik je best de short-url. |