Доброго времени суток.Подскажите плз как реализовать сие?Есть такой .htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# Get rid of index.php
RewriteCond %{REQUEST_URI} /index\.php
RewriteRule (.*) index.php?rewrite=2 [L,QSA]
# Rewrite all directory-looking urls
RewriteCond %{REQUEST_URI} /$
RewriteRule (.*) index.php?rewrite=1 [L,QSA]
# Try to route missing files
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} public\/ [OR]
RewriteCond %{REQUEST_FILENAME} \.(jpg|gif|png|ico|flv|htm|html|php|css|js)$
RewriteRule . - [L]
# If the file doesn't exist, rewrite to index
RewriteCond %{REQUEST_FILENAME} !(dbc\/)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?rewrite=1 [L,QSA]
</IfModule>
#
<IfModule mod_security.c>
SecFilterScanPOST Off
</IfModule>
# sends requests /index.php/path/to/module/ to "index.php"
# AcceptPathInfo On
# @todo This may not be effective in some cases
FileETag Size
<IfModule mod_charset.c>
CharsetDisable On
</IfModule>
AddDefaultCharset UTF-8
На этом сервере есть панель управления ,который доступен по адресу www.domain.com/abc/
Но данные правила перенаправляют меня на корень.
Что мне заменить в конфиге для недомущения такого?Благодарю