[pLog-svn] r3506 - plog/trunk

reto at devel.lifetype.net reto at devel.lifetype.net
Thu Jun 1 20:41:00 GMT 2006


Author: reto
Date: 2006-06-01 20:41:00 +0000 (Thu, 01 Jun 2006)
New Revision: 3506

Modified:
   plog/trunk/.htaccess
Log:
this is a no brainer. simply removing plog all to gether like oscar did in r3503

BTW: on my todo list (and feel free to be faster ;):
the .htaccess badly needs some commenting. it's probably the only and worst documented part of all code...

Modified: plog/trunk/.htaccess
===================================================================
--- plog/trunk/.htaccess	2006-06-01 20:21:29 UTC (rev 3505)
+++ plog/trunk/.htaccess	2006-06-01 20:41:00 UTC (rev 3506)
@@ -11,51 +11,51 @@
 
 <IfModule mod_rewrite.c>
 RewriteEngine On
-RewriteBase /plog/
+RewriteBase /
 
-# Permalink to the blog entry (i.e. /plog/1_userfoo/archive/3_title-foo-bar.html)
+# Permalink to the blog entry (i.e. /1_userfoo/archive/3_title-foo-bar.html)
 RewriteRule ^([0-9]+)_[^/]+/archive/([0-9]+)_[^.]+\.html$ index.php?op=ViewArticle&blogId=$1&articleId=$2 [L,NC]
 
-# Monthly archive (i.e. /plog/1_userfoo/archive/200401.html)
+# Monthly archive (i.e. /1_userfoo/archive/200401.html)
 RewriteRule ^([0-9]+)_[^/]+/archive/([0-9]{6})\.html$ index.php?blogId=$1&Date=$2 [L,NC]
 
-# Daily archive (i.e. /plog/1_blogfoo/archive/20040101.html)
+# Daily archive (i.e. /1_blogfoo/archive/20040101.html)
 RewriteRule ^([0-9]+)_[^/]+/archive/([0-9]{8})\.html$ index.php?blogId=$1&Date=$2 [L,NC]
 
-# Album (i.e. /plog/88_userfoo/albums/34_title-foo-bar.html)
+# Album (i.e. /88_userfoo/albums/34_title-foo-bar.html)
 RewriteRule ^([0-9]+)_[^/]+/albums/([0-9]+)_[^.]+\.html$ index.php?op=ViewAlbum&blogId=$1&albumId=$2 [L,NC]
 
-# Albums (i.e. /plog/88_userfoo/albums/)
+# Albums (i.e. /88_userfoo/albums/)
 RewriteRule ^([0-9]+)_[^/]+/albums/$ index.php?op=ViewAlbum&blogId=$1&albumId=0 [L,NC]
 
-# Category view (i.e. /plog/88_userfoo/categories/4_cat-foobar.html)
+# Category view (i.e. /88_userfoo/categories/4_cat-foobar.html)
 RewriteRule ^([0-9]+)_[^/]+/categories/([0-9]+)_[^.]+\.html$ index.php?blogId=$1&postCategoryId=$2 [L,NC]
 
-# Category-Feeds (i.e. /plog/3_userfoo/feeds/categories/2_category/atom)
+# Category-Feeds (i.e. /3_userfoo/feeds/categories/2_category/atom)
 RewriteRule ^([0-9]+)_[^/]+/feeds/categories/([0-9]+)_[^.]+/(.*)$ rss.php?blogId=$1&categoryId=$2&profile=$3 [L,NC]
 
-# Feeds (i.e. /plog/3_userfoo/feeds/atom)
+# Feeds (i.e. /3_userfoo/feeds/atom)
 RewriteRule ^([0-9]+)_[^/]+/feeds/(.*)$ rss.php?blogId=$1&profile=$2 [L,NC]
 
-# Trackbacks (i.e. /plog/3_userfoo/trackbacks/34_title-foo-bar.html)
+# Trackbacks (i.e. /3_userfoo/trackbacks/34_title-foo-bar.html)
 RewriteRule ^([0-9]+)_[^/]+/trackbacks/([0-9]+)_[^.]+\.html$ index.php?op=Trackbacks&blogId=$1&articleId=$2 [L,NC]
 
-# Comment form (i.e. /plog/88_userfoo/comment/34_title-foo-bar.html)
+# Comment form (i.e. /88_userfoo/comment/34_title-foo-bar.html)
 RewriteRule ^([0-9]+)_[^/]+/comment/([0-9]+)_[^.]+\.html$ index.php?op=Comment&blogId=$1&articleId=$2 [L,NC]
 
-# Resources (i.e. /plog/88_userfoo/resources/this-is-a-resource-name.pdf.html)
+# Resources (i.e. /88_userfoo/resources/this-is-a-resource-name.pdf.html)
 RewriteRule ^([0-9]+)_[^/]+/resources/([^.]+)\.([^.]+)\.html$ index.php?op=ViewResource&blogId=$1&resource=$2.$3 [L,NC]
 
-# Download a resource (i.e. /plog/88_userfoo/get/this-is-a-resource-name.pdf)
+# Download a resource (i.e. /88_userfoo/get/this-is-a-resource-name.pdf)
 RewriteRule ^([0-9]+)_[^/]+/get/(.+)$ resserver.php?blogId=$1&resource=$2 [L,NC]
 
-# Static Pages (i.e /plog/3_userfoo/demosites)
+# Static Pages (i.e /3_userfoo/demosites)
 RewriteRule ^([0-9]+)_[^/]+/(.+)$ index.php?op=Template&blogId=$1&show=$2 [NC]
 
-# A non-default blog (i.e. /plog/88_userfoo)
+# A non-default blog (i.e. /88_userfoo)
 RewriteRule ^([0-9]+)(_[^/]+)?$ index.php?blogId=$1 [L,NC]
 
-# Daily archive (i.e. /plog/1_userfoo/archive/20040101.html)
+# Daily archive (i.e. /1_userfoo/archive/20040101.html)
 RewriteRule ^([0-9]+)_[^/]+/archive/([0-9]{8})\.html$ index.php?blogId=$1&Date=$2 [L,NC]
 
 </IfModule>
@@ -117,7 +117,3 @@
 ErrorDocument 401 /error.php
 ErrorDocument 403 /error.php
 ErrorDocument 404 /error.php
-
-
-
-



More information about the pLog-svn mailing list