Page is a not externally linkable
carfac - 11:44 pm on Oct 4, 2002 (gmt 0)
RewriteRule !^403.htm$ - [F,L] (in particular the F,L bit) mean at the end? RewriteRule- The conclusion of all thos conditions, and the terminator of that. In means that if any (*you use [OR]) of those conditions exist, do this. !- this means not - means do nothing F means this is forbidden- return FORBIDDEN (403) Is it better to use absolute or relative paths for the error documents? for the first part of the rewriterule, use a URI from the root directory How can I check that it's working once I've uploaded it? I would recommend going to [wannabrowser.com...] and spoofing your UA! Good Luck! dave
Annii:
^- means the request string BEGINS EXACTLY
403.htm- name of your 403 file
$- ends exactly (the above will not match 403.html!)
L means LAST, do nothing further and end all rewrite rules for any requests effected by this block
for the seconf part, you HAVE to use a full URL (http://www.domain.com/)