PhrameFramework/phrame/master/public/.htaccess - Htaccess File

PhrameFramework/phrame/master/public/.htaccess

# Uncomment and provide appropriate values
#
# Application name to be run
# SetEnv  APPLICATION_NAME  main
#
# Application environment
# SetEnv  APPLICATION_ENV   development

<IfModule mod_rewrite.c>
    RewriteEngine on

    RewriteBase /

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
ENV, REQUEST_FILENAME

Comments

Apache