Forum Moderators: phranque
<POLICY-REF about="/w3c/policyfile.xml">
<INCLUDE>/*</INCLUDE> //Does this include site and subdomains?
<EXCLUDE>/subdomain1/*</EXCLUDE> //does this exclude subdomain1.myexamplesite.com?
Thank you very much for any help?(if it applies)
Depending on your server and its configuration, you may be able to Alias or internally rewrite all of these URLs to point to the same file, if needed.
Jim
<EXCLUDE>/submit.php</EXCLUDE>
or perhaps
<EXCLUDE>/submit.php*</EXCLUDE>
depending upon whether you're hinting at using a query string here, and whether they consider the query string to be part of a URI for their purposes -- It isn't technically, it's actually data attached to a URI.
"/submit.php/" would be a problematic URI in the HTTP schema; It might indeed work, but it would likely cause problems and/or uncertainties, as here.
If you don't get any better advice here, I'd suggest studying the W3C P3P site [w3.org].
Jim