marek-saji/nyopaste/master/app/htdocs/.htaccess - Htaccess File

marek-saji/nyopaste/master/app/htdocs/.htaccess

RewriteEngine on

SetEnvIf Request_URI "robots.txt$" HG_DUMMY_URI=/RobotsTxt

# don't go anywhere.
RewriteRule ^hg/ - [L]

# short permalink
RewriteRule ^~(.*),(.*)$ /Paste:$1,v=$2 [R=302,L]
RewriteRule ^~(.*)$ /Paste:$1 [R=302,L]

# to avoid unnecessary file existence checks
RewriteRule ^(js|css|gfx)/ - [L]
RewriteRule ^[a-z]+.php - [L]

RewriteCond %{IS_SUBREQ} false
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [L]

On Github License

Files

Download PDF of Htaccess file
IS_SUBREQ, REQUEST_FILENAME, REQUEST_URI

Comments

Apache