scratch – Blame information for rev 86

Subversion Repositories:
Rev:
Rev Author Line No. Line
73 office 1 Options -MultiViews
2 RewriteEngine on
86 office 3 # Deleting files can be done by pre-pending the timestamp.
81 office 4 RewriteRule ^([0-9]+?)/([A-Za-z0-9]+)$ delete.php?timestamp=$1&hash=$2 [QSA,L]
86 office 5 # For serving OpenGraph HTML files from the file.
6 RewriteRule ^og/([A-Za-z0-9]+)$ graph.php?hash=$1 [QSA,L]
7 # Retrieving a file by the hash.
81 office 8 RewriteRule ^([A-Za-z0-9]+)$ file.php?hash=$1 [QSA,L]
86 office 9 # By default, rewrite everything to index.html
73 office 10 RewriteRule ^$ index.html [L]