jobyone/plaster/master/demo/.htaccess - Htaccess File

jobyone/plaster/master/demo/.htaccess

RewriteEngine on

# Files that will not be handled by Plaster
RewriteCond %{REQUEST_URI} !.*.(php) [NC]

# If you are not using FileLayer.rewrite rules,
# you can let the server decide when to 404, and
# also get automatic addition of trailing slashes
# to directories by uncommenting the following,
# which wil cause Plaster to only handle existing
# files and directories
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d

RewriteRule ^(.*)$ demo-basic.php/$1 [L]

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME, REQUEST_URI

Comments

Apache