2009-07-06 8 views

Odpowiedz

1

Innym rozwiązaniem niż apache, byłoby to zrobić w pliku index.php .

Dodaj coś takiego na górze strony.

if(isset($_GET['site']) && $_GET['site'] == 'ing'){ 
    header('HTTP/1.1 403 Forbidden'); 
    exit(); 
} 
3

ten powinien zrobić:

RewriteCond %{QUERY_STRING} (^|&)site=ing(&|$) 
RewriteRule ^main/index\.php$ - [F] 
Powiązane problemy