| 1 |
Index: .htaccess |
|---|
| 2 |
=================================================================== |
|---|
| 3 |
RCS file: /home/cvs/repository/elgg/.htaccess,v |
|---|
| 4 |
retrieving revision 1.4 |
|---|
| 5 |
diff -c -r1.4 .htaccess |
|---|
| 6 |
*** .htaccess 24 Jan 2008 15:24:09 -0000 1.4 |
|---|
| 7 |
--- .htaccess 29 Jan 2008 14:10:58 -0000 |
|---|
| 8 |
*************** |
|---|
| 9 |
*** 152,157 **** |
|---|
| 10 |
--- 152,164 ---- |
|---|
| 11 |
RewriteRule ^_icon\/user/([-0-9]+)\/([A-Za-z])\/([0-9]+)$ mod/icons/icon.php?id=$1&constraint1=$2&size1=$3 |
|---|
| 12 |
RewriteRule ^_icon\/user/([-0-9]+)\/([A-Za-z])\/([0-9]+)\/([A-Za-z])\/([0-9]+)$ mod/icons/icon.php?id=$1&constraint1=$2&size1=$3&constraint2=$4&size2=$5 |
|---|
| 13 |
|
|---|
| 14 |
+ # Tags |
|---|
| 15 |
+ ########### |
|---|
| 16 |
+ |
|---|
| 17 |
+ RewriteRule ^tag\/(.+)\/?$ search/all.php?tag=$1 [L] |
|---|
| 18 |
+ RewriteRule ^rsstag\/(.+)\/?$ search/rss.php?tag=$1 |
|---|
| 19 |
+ RewriteRule ^tag\/(.+)/ecl\/?$ search/ecl.php?tag=$1 |
|---|
| 20 |
+ |
|---|
| 21 |
# Newsclient |
|---|
| 22 |
############ |
|---|
| 23 |
RewriteRule ^(([A-Za-z0-9])[A-Za-z0-9]+)\/rss\/?$ mod/newsclient/static.php?username=$1&userref=$2&type=profile |
|---|
| 24 |
*************** |
|---|
| 25 |
*** 192,203 **** |
|---|
| 26 |
ReWriteRule ^weblog\/everyone\/skip/([0-9]+)$ mod/blog/everyone.php?weblog_offset=$1 |
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 |
- ########### |
|---|
| 30 |
- |
|---|
| 31 |
- RewriteRule ^tag\/(.+)\/?$ search/all.php?tag=$1 |
|---|
| 32 |
- RewriteRule ^rsstag\/(.+)\/?$ search/rss.php?tag=$1 |
|---|
| 33 |
- RewriteRule ^tag\/(.+)/ecl\/?$ search/ecl.php?tag=$1 |
|---|
| 34 |
- |
|---|
| 35 |
# Some blogging clients probe Wordpress or MoveableType endpoints, |
|---|
| 36 |
# redirect them to the Elgg xml-rpc endpoint |
|---|
| 37 |
# |
|---|
| 38 |
--- 199,204 ---- |
|---|