jloisel/phpdir/master/.htaccess - Htaccess File

jloisel/phpdir/master/.htaccess

# Don't show directory listings for URLs which map to a directory.
Options -Indexes

# Follow symbolic links in this directory.
Options +FollowSymLinks

# Set the default handler.
DirectoryIndex frontend.php

# Various rewrite rules.
<IfModule mod_rewrite.c>
  RewriteEngine On
  
  # Backend
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^admin(.*?)$ backend.php/$1?v=admin [L,QSA]
  
  # Frontend
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ frontend.php/$1 [L,QSA]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache