Fixed off by one error
authorDylan Lloyd <dylan@psu.edu>
Sun, 6 Mar 2011 05:49:44 +0000 (00:49 -0500)
committerDylan Lloyd <dylan@psu.edu>
Sun, 6 Mar 2011 05:49:44 +0000 (00:49 -0500)
.htaccess

index f685a47..b507140 100644 (file)
--- a/.htaccess
+++ b/.htaccess
@@ -7,6 +7,6 @@ RewriteRule ^note/([^/\.]+)?/?$ /index.php?note=$1 [L]
 
 RewriteRule ^notes/?$ notes/page/1
 RewriteRule ^notes/page/?$ notes/page/1
-RewriteRule ^notes/page/([1-9]+)/?$ /index.php?page=$1 [L]
+RewriteRule ^notes/page/([0-9]+)/?$ /index.php?page=$1 [L]
 
 RewriteRule ^([^/\.]+)/?$ /index.php?project=$1 [L]