diff options
Diffstat (limited to 'htaccess.sample')
-rw-r--r-- | htaccess.sample | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/htaccess.sample b/htaccess.sample index 1a8330488..3ef108c2b 100644 --- a/htaccess.sample +++ b/htaccess.sample @@ -7,6 +7,8 @@ RewriteBase /mublog/ RewriteRule ^$ index.php?action=public [L,QSA] RewriteRule ^rss$ index.php?action=publicrss [L,QSA] RewriteRule ^xrds$ index.php?action=publicxrds [L,QSA] +RewriteRule ^featuredrss$ index.php?action=featuredrss [L,QSA] +RewriteRule ^favoritedrss$ index.php?action=favoritedrss [L,QSA] RewriteRule ^opensearch/people$ index.php?action=opensearch&type=people [L,QSA] RewriteRule ^opensearch/notice$ index.php?action=opensearch&type=notice [L,QSA] @@ -66,6 +68,9 @@ RewriteRule ^tags/?$ index.php?action=tag [L,QSA] RewriteRule ^tag/([a-zA-Z0-9]+)/rss$ index.php?action=tagrss&tag=$1 [L,QSA] RewriteRule ^tag(/(.*))?$ index.php?action=tag&tag=$2 [L,QSA] +RewriteRule ^featured/?$ index.php?action=featured [L,QSA] +RewriteRule ^favorited/?$ index.php?action=favorited [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] |