blog: add the translation branches entry
author |
Steve Losh <steve@stevelosh.com> |
date |
Thu, 10 Jun 2010 21:46:09 -0400 |
parents |
bba73143f4b1 |
children |
1ce08f2b3085 |
RewriteEngine on
RewriteBase {{ node.site.settings.SITE_ROOT }}
# www is evil and must be abolished
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
# Old URLs
RewriteRule ^blog/entry/(\d+)/(\d\d)/\d+/([^/]*)/?$ /blog/$1/$2/$3/ [R=301,L]
RewriteRule ^blog/entry/(\d+)/(\d)/\d+/([^/]*)/?$ /blog/$1/0$2/$3/ [R=301,L]
{% hyde_listing_page_rewrite_rules %}
# listing pages whose names are the same as their enclosing folder's
RewriteCond %{REQUEST_FILENAME}/$1.html -f
RewriteRule ^([^/]*)/$ %{REQUEST_FILENAME}/$1.html
# regular pages
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^.*$ %{REQUEST_FILENAME}.html
ErrorDocument 404 /404.html