htaccess 1.8 KB

12345678910111213141516171819202122232425
  1. RewriteEngine on
  2. # set up redirect so /join always goes to our join page
  3. RewriteRule ^join/index.html /pages/join.html [R=permanent,last]
  4. RewriteRule ^join/ /pages/join.html [R=permanent,last]
  5. # set up redirects from urls of the moveabletype version of the site to
  6. # the pyblosxom version of the site
  7. RewriteRule ^about/index.html /pages/about.html [R=permanent,last]
  8. RewriteRule ^blog/index.html /news/index.html [R=permanent,last]
  9. RewriteRule ^about/ /pages/about.html [R=permanent,last]
  10. RewriteRule ^blog/ /news/index.html [R=permanent,last]
  11. # rewrite rules for old locations of blog entries to new ones
  12. RewriteRule ^2011/06/version-002---we-can-haz-pages/index.html /news/version-002---we-can-haz-pages.html [R=permanent,last]
  13. RewriteRule ^2011/05/gnu-mediagoblin-free-and-decentralized-media-sharing-in-development/index.html /news/gnu-mediagoblin-free-and-decentralized-media-sharing-in-development.html [R=permanent,last]
  14. RewriteRule ^2011/05/goals-for-our-first-alpha-release/index.html /news/goals-for-our-first-alpha-release.html [R=permanent,last]
  15. RewriteRule ^2011/05/join-us-for-the-upcoming-gnu-mediagoblin-hackers-meeting/index.html /news/join-us-for-the-upcoming-gnu-mediagoblin-hackers-meeting.html [R=permanent,last]
  16. RewriteRule ^2011/06/version-002---we-can-haz-pages/ /news/version-002---we-can-haz-pages.html [R=permanent,last]
  17. RewriteRule ^2011/05/gnu-mediagoblin-free-and-decentralized-media-sharing-in-development/ /news/gnu-mediagoblin-free-and-decentralized-media-sharing-in-development.html [R=permanent,last]
  18. RewriteRule ^2011/05/goals-for-our-first-alpha-release/ /news/goals-for-our-first-alpha-release.html [R=permanent,last]
  19. RewriteRule ^2011/05/join-us-for-the-upcoming-gnu-mediagoblin-hackers-meeting/ /news/join-us-for-the-upcoming-gnu-mediagoblin-hackers-meeting.html [R=permanent,last]