bolom009/testwork_vdo/master/.htaccess - Htaccess File

bolom009/testwork_vdo/master/.htaccess

php_value xdebug.remote_enable on
php_value xdebug.remote_handler dbgp

php_value xdebug.remote_host 10.30.1.102
php_value xdebug.remote_port 9000
php_value xdebug.idekey "netbeans-xdebug"

# 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 [L,PT]
</IfModule>

On Github License

Files

Download PDF of Htaccess file

Comments

Apache