dmitriy-luch/rent/master/.htaccess - Htaccess File

dmitriy-luch/rent/master/.htaccess

# Mod_Autoindex
<IfModule mod_autoindex.c>
    # Disable Indexes
    Options -Indexes
    IndexIgnore */*
</IfModule>

# Mod_Rewrite
<IfModule mod_rewrite.c>
    Options +FollowSymlinks
    # Enable mod_rewrite
    RewriteEngine On

    RewriteRule ^backend(/.*)$ backend/web/$1 [L,PT]
    RewriteRule ^(.*)$ frontend/web/$1
</IfModule>

php_value xdebug.remote_host 192.168.1.101

On Github License

Files

Download PDF of Htaccess file

Comments

Apache