nickbryan/Opus/master/.htaccess - Htaccess File

nickbryan/Opus/master/.htaccess

#This will redirect any stray Http requests to the public folder

Options +FollowSymLinks

<ifmodule mod_rewrite.c="">
    # Tell PHP mod rewrite is enabled

    SetEnv HTTP_MOD_REWRITE On
    RewriteEngine on
    RewriteRule ^$   public/   [L]
    RewriteRule (.*) public/$1 [L]
</ifmodule>

On Github License

Files

Download PDF of Htaccess file

Comments

Apache