tempprojects/imagecorp/master/.htaccess - Htaccess File

tempprojects/imagecorp/master/.htaccess

# Mod_Autoindex
<IfModule mod_autoindex.c>
  # Запрещаем просмотр содержимого папок
  Options -Indexes
</IfModule>

# Mod_Rewrite
<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  # Включаем mod_rewrite
  RewriteEngine On
  IndexIgnore */*
  # Перенаправляем administrator на входной скрипт админки
  #RewriteRule ^administrator/(.*)?$ /backend/web/$1 [L,PT]
  # Перенаправляем все запросы на входной скрипт
  #RewriteRule ^([^/].*)?$ /frontend/web/$1
</IfModule>

On Github License

Files

Download PDF of Htaccess file

Comments

Apache