disinclined.org
/
git
/
dylansserver.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
85abf9b
)
Fixed off by one error
author
Dylan Lloyd
<dylan@psu.edu>
Sun, 6 Mar 2011 05:49:44 +0000
(
00:49
-0500)
committer
Dylan Lloyd
<dylan@psu.edu>
Sun, 6 Mar 2011 05:49:44 +0000
(
00:49
-0500)
.htaccess
patch
|
blob
|
history
diff --git
a/.htaccess
b/.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]