вот код
AddType image/ico ico
AddType image/x-icon ico
AddDefaultCharset windows-1251
Options +Followsymlinks -Indexes -MultiViews
DirectoryIndex index.php
RewriteEngine On
# Add slash after "directory" name ("directory" is the file without "." in the name).
# if REQUEST_METHOD == POST, we are to disable redirection to avoid data lost!
RewriteCond %{REQUEST_METHOD} GET
RewriteCond %{REQUEST_URI} (.*/[^/.]+)($|\?)
RewriteRule .* %1/ [R,L,QSA]
# Allow acces only for files from /home directory (if exists)
# Disable QUERY_STRING, because files from /home are static
RewriteCond %{REQUEST_URI} ^/home
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule .* - [L]
# Allow requests for files from root directory, enabling query string
RewriteCond %{REQUEST_URI} ^/[^/]+$
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule .* - [L,QSA]
# Allow the following directories ( separated by | )
RewriteCond %{REQUEST_URI} ^/(dir1|dir2)
RewriteRule .* - [L,QSA]
# All other requests
RewriteRule .* index.php [L,QSA]
КАК СДЕЛАТЬ, чтобы не редиректило на индекс например со страницы /about/# или с любой другой со знаком # ??? помогите плиз... очень нужно