Forum Moderators: phranque
Laurenz
For other sites it's less important.
Parents should be restricting access to only those sites with labels.
Enabling access to sites with labels, and then also to sites with no labels is pointless, as many inappropriate sites will have none.
The only two labels you really need are
ICRA [icra.org...]
and Safesurf [safesurf.com...]
I also have RSAC [rsac.org...] but that page advises using ICRA instead.
The only directory/search engine I know of that effectively uses tags is Surfsafely
[surfsafely.com...]
dpb
I'd not heard that you could use htaccess but it makes sense.
As I understand it <meta http-equiv=" is meant to be interpreted exactly as if it were a true http header, but some agents/SE's ignore them, eg. when they do just a HEAD request.
So if you want to do a <meta http-equiv=" it is, I'm thinking, better to do it as a real header. I'm recalling that there's some problem with meta tags in XHTML 1.1, something gives me the impression they shouldn't be used, can't recall.. having them as header may be the correct way forward..
That said I'm not sure if all those who use them eg. the SE Surfsafely, would see the header, I guess they should, but it might be worth checking that they do.
dpb
<meta http-equiv="pics-label" content='(pics-1.1
"h*tp://www.icra.org/ratingsv02.html" comment "ICRAonline v2.0" l gen true for "h*tp://www.my-domain.com" r (nz 1 vz 1 lz 1 oz 1 cz 1)
"h*tp://www.rsac.org/ratingsv01.html" l gen true
for "h*tp://www.my-domain.com" r (n 0 s 0 v 0 l 0))'>
eg.
<?php
header('PICS-Label: (pics-1.1 "http://www.icra.org/ratingsv02.html" l r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l r (SS~~000 1))')
?>
The W3C PICS recommendation appears to suggest headers are valid and therefore it's fair to expect PICS readers to always check the headers for PICS tags.
dpb