root/events/phpframework/piece_framework/trunk/web/frontend/htdocs/.htaccess @ 14349

Revision 14349, 1.1 kB (checked in by kumatch, 5 years ago)

Added some rewrite rules for the user contents resources.

Line 
1RewriteEngine on
2
3RewriteBase /
4RewriteRule ^signup/?$ /signup.php [L]
5RewriteRule ^account/create/?$ /signup.php [L]
6RewriteRule ^account/register/([a-f0-9]+)$ /register.php?key=$1 [L]
7
8RewriteRule ^login/?$ /login.php [L]
9RewriteRule ^sessions/?$ /login.php [L]
10RewriteRule ^logout/?$ /logout.php [L]
11
12RewriteRule ^home/?$ /status.php?view=home&%{QUERY_STRING} [L]
13RewriteRule ^replies/?$ /status.php?view=replies&%{QUERY_STRING} [L]
14RewriteRule ^account/archive/?$ /status.php?view=archive&%{QUERY_STRING} [L]
15RewriteRule ^public_timeline/?$ /status.php?view=public_timeline&%{QUERY_STRING} [L]
16RewriteRule ^status/update/?$ /status.php [L]
17
18RewriteRule ^account/settings/?$ /account/settings.php [L]
19RewriteRule ^account/password/?$ /account/password.php [L]
20RewriteRule ^account/picture/?$ /account/picture.php [L]
21
22RewriteRule ^([0-9a-zA-Z_]{1,20})/?$ /user/archive.php?userName=$1&%{QUERY_STRING} [L]
23RewriteRule ^([0-9a-zA-Z_]{1,20})/friends/?$ /user/friends.php?userName=$1
24RewriteRule ^([0-9a-zA-Z_]{1,20})/followers/?$ /user/followers.php?userName=$1
25
26ErrorDocument 404 /errors/404.html
Note: See TracBrowser for help on using the browser.