From: Ben Klang Date: Tue, 18 May 2010 02:05:14 +0000 (-0400) Subject: Pastie: Add routes for getting pastes via uuid X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=0ef5cf53e69550a6f243978d1bf1fa6f52b16d69;p=horde.git Pastie: Add routes for getting pastes via uuid --- diff --git a/pastie/.htaccess b/pastie/.htaccess new file mode 100644 index 000000000..9158a9c9a --- /dev/null +++ b/pastie/.htaccess @@ -0,0 +1,6 @@ + + RewriteEngine On + RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} !-f + RewriteRule ^uuid/([0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]+)$ view.php?uuid=$1 [QSA,L] +