slyxster/sabc/master/public/.htaccess - Htaccess File

slyxster/sabc/master/public/.htaccess

RewriteEngine on

# Make sure we're always using the www in the URL
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !/app
RewriteCond %{REQUEST_FILENAME} !/webapi
RewriteCond %{REQUEST_FILENAME} !/balances
RewriteCond %{REQUEST_FILENAME} !/api-balances
RewriteCond %{REQUEST_FILENAME} !/new-balances
RewriteCond %{REQUEST_FILENAME} !/claims
RewriteCond %{REQUEST_FILENAME} !/help
RewriteCond %{REQUEST_FILENAME} !/settings
RewriteCond %{REQUEST_FILENAME} !/email
RewriteCond %{REQUEST_FILENAME} !/logout
RewriteCond %{REQUEST_FILENAME} !/sabcadmin
RewriteCond %{REQUEST_FILENAME} !/office
RewriteCond %{REQUEST_FILENAME} !/siteaccess
RewriteCond %{REQUEST_FILENAME} !/enrollment
RewriteCond %{REQUEST_FILENAME} !/portal
RewriteCond %{REQUEST_FILENAME} !/companyadmin
RewriteCond %{REQUEST_FILENAME} !/company
RewriteCond %{REQUEST_FILENAME} !/insurance/*/*/*/*
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

SetEnv FUEL_ENV development

# Send any request to the redvel system if there's not already a file of that name
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /fuel.php/$1 [L]

On Github License

Files

Download PDF of Htaccess file
ENV, REQUEST_FILENAME

Comments

Apache