From 9c0455dfc64bed49feae98c332a2285b94f63172 Mon Sep 17 00:00:00 2001 From: Mike Cochrane Date: Sun, 20 Jul 2008 04:10:21 -0400 Subject: [PATCH] Add rewrite rules for tags darcs-hash:20080720081021-533db-c5610ba4b0bb7f1999582ee4f9220ff2e5595949.gz --- htaccess.sample | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/htaccess.sample b/htaccess.sample index 3eb1ddba52..86d014618b 100644 --- a/htaccess.sample +++ b/htaccess.sample @@ -44,6 +44,9 @@ RewriteRule ^notice/(\d+)$ index.php?action=shownotice¬ice=$1 [L,QSA] RewriteRule ^user/(\d+)$ index.php?action=userbyid&id=$1 [L,QSA] +RewriteRule ^tags/?$ index.php?action=tag [L,QSA] +RewriteRule ^tag(/(.*))?$ index.php?action=tag&tag=$2 [L,QSA] + RewriteRule ^(\w+)/subscriptions$ index.php?action=subscriptions&nickname=$1 [L,QSA] RewriteRule ^(\w+)/subscribers$ index.php?action=subscribers&nickname=$1 [L,QSA] RewriteRule ^(\w+)/xrds$ index.php?action=xrds&nickname=$1 [L,QSA] @@ -57,7 +60,7 @@ RewriteRule ^(\w+)/avatar/(original|96|48|24)$ index.php?action=avatarbynickname RewriteRule ^(\w+)$ index.php?action=showstream&nickname=$1 [L,QSA] -# Twitter-compatible API rewrites +# Twitter-compatible API rewrites # XXX: Surely these can be refactored a little -- Zach RewriteRule ^api/statuses/public_timeline(.*)$ index.php?action=api&apiaction=statuses&method=public_timeline$1 [L,QSA] RewriteRule ^api/statuses/friends_timeline(.*)$ index.php?action=api&apiaction=statuses&method=friends_timeline$1 [L,QSA]