X-Git-Url: https://disinclined.org/git/?a=blobdiff_plain;f=.htaccess;h=ce9fed80d1b44c2848495dd43ce561c6f9c1c2b0;hb=05250f978cc7e3e1f7df92f20fd18f4667a06f2f;hp=b11bc6ae77c49cf7fc29783acc670295fe6d99a7;hpb=0d5b65dd317eda7cd09d208c634067c4a9acb6fd;p=dylansserver.git diff --git a/.htaccess b/.htaccess index b11bc6a..ce9fed8 100644 --- a/.htaccess +++ b/.htaccess @@ -1,6 +1,20 @@ ErrorDocument 404 /404.php + + RewriteEngine on -RewriteRule ^notes/page/([1-9]+)/?$ notes/index.php?page=$1 [L] -RewriteRule ^notes/([^/\.]+)/?$ notes/index.php?note=$1 [L] -RewriteRule ^notes/?$ notes/ [L] -RewriteRule ^([^/\.]+)/?$ index.php?project=$1 [L] + +RewriteRule ^notes/rss/?$ /index.php?rss=true [L] + +RewriteRule ^note/([^/\.]+)?/?$ /index.php?note=$1 [L] + +RewriteRule ^notes/?$ notes/page/1 +RewriteRule ^notes/page/?$ notes/page/1 +RewriteRule ^notes/page/([0-9]+)/?$ /index.php?page=$1 [L] + +RewriteRule ^notes/([0-9]{4})/?$ /index.php?year=$1 [L] +RewriteRule ^notes/([0-9]{4})/([0-9]{2})/?$ /index.php?year=$1&month=$2 [L] +RewriteRule ^notes/([0-9]{4})/([0-9]{2})/([0-9]{2})/?$ /index.php?year=$1&month=$2&day=$3 [L] + +## This needs to be last as to avoid catching /notes/ etc. +RewriteRule ^([^/\.]+)/?$ /index.php?project=$1 [L] +