dotvezz/vone-php/master/.htaccess - Htaccess File

dotvezz/vone-php/master/.htaccess

<FilesMatch ".(htaccess|htpasswd|ini|log|sh|inc|bak|inc|json)$">
  Order Allow,Deny
  Deny from all
</FilesMatch>
<IfModule mod_rewrite.c>
  RewriteEngine on
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^ index.php [L]

  RewriteEngine on
  RewriteCond %{REQUEST_URI}  !.(php|html?|jpg|gif|png|css|js)$
  RewriteRule ^(.*)([^/])$ http://%{HTTP_HOST}/$1$2/ [L,R=301]

  RewriteRule ^Vone/ - [L,R=404]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
HTTP_HOST, REQUEST_FILENAME, REQUEST_URI

Comments

Apache