magneticstain/PrivyPaste/master/PrivyPaste/.htaccess - Htaccess File

magneticstain/PrivyPaste/master/PrivyPaste/.htaccess

# Rewrite paste requests
RewriteEngine On

RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{REQUEST_URI} !(.css|.js|.png|.jpg|.gif|robots.txt)$ [NC]

RewriteRule ^paste/(.*)$ ./index.php?p=$1 [NC]

# cache static data
<FilesMatch "(?i)^.*.(ico|flv|jpg|jpeg|png|gif|js|css)$">
ExpiresActive On
ExpiresDefault A2592000
</FilesMatch>

On Github License

Files

Download PDF of Htaccess file
REQUEST_URI, SCRIPT_FILENAME, static

Comments

Apache