01 Permanent.txt
707 Bytes
# Mod_Autoindex
<IfModule mod_autoindex.c>
# Çàáîðîíÿºìî ïåðåãëÿä âì³ñòó ïàïîê
Options -Indexes
</IfModule>
# Mod_Rewrite
<IfModule mod_rewrite.c>
RewriteEngine On
# Redirect index to Root
RewriteCond %{THE_REQUEST} ^.*/index\.php
RewriteRule ^(.*)index.php$ /$1 [R=301,L]
# Redirect many / to one
RewriteCond %{THE_REQUEST} //
RewriteRule .* /$0 [R=301,L]
</IfModule>
<IfModule mod_rewrite.c>
Options +FollowSymlinks
# Âìèêàºìî mod_rewrite
RewriteEngine On
# ßêùî öå ïàïêà ÷è ôàéë, â³äêðèâàºìî ¿¿/éîãî
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Ó ³íøîìó âèïàäêó ïåðåíàïðàâëÿºìî äî index.php
RewriteRule . index.php
</IfModule>