Archive for the ‘GISBlog’ Category
Webinar Series: TECH 101 – Mashups For Planning
Related:
* Mash-ups as Planning Tools
* GISP and AICP
* Technology Division of the American Planning Association (APA) Webinar Series – TECH 101: Mashups for Planning
* APA Technology Division: Education
* APA Technology Division Webinar Series: Event
Interview: “Geographic Information Systems (GIS) – It’s Much More Than Google Maps – A Chat With GIS Experts”
* Part 1
* Part 2
Interviewed by Carl Williams.
Related:
2009
* Technology Division of the American Planning Association (APA) Webinar Series – TECH 101: Mashups for Planning
2008
* GISP and AICP
2007
* Mash-ups as Planning Tools
* Neogeography 101: Word Association
* Elite Systems Research Institute, Inc. [ESRI] et al
* Google Earth [GE] @ Work
2006
* ESRI Ketchup!
* Why do you like Geography?
2005
* A Rose by Any Other Name
2004
* Graphic Software
* Map Viewer and Google
* Brevity is the soul of wit
b2evolution 2 wordpress
Well, I have switched from b2evolution to WordPress CMS. And thanks to Apache’s mod_rewrite, I was able to keep all my old links intact. Here’s how:
### wordpress:
<IfModule mod_rewrite.c>
# basic:
RewriteEngine On
RewriteBase /gistools/discuss/weblogs/blogs/
# file:
RewriteCond %{REQUEST_FILENAME} !-f
# dir:
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /gistools/discuss/weblogs/blogs/index.php [L]
# [R] Redirect [L] Last rule
# post:
Options +FollowSymLinks
RewriteCond %{QUERY_STRING} title=([^&]+)
RewriteRule ^index\.php /gistools/discuss/weblogs/blogs/%1\.html? [r=301,nc]
# archive – monthly:http://www.spatiallink.org/gistools/discuss/weblogs/blogs/pi.php?m=200807
RewriteCond %{QUERY_STRING} m=([0-9]{4})([0-9]{2})
RewriteRule ^index\.php /gistools/discuss/weblogs/blogs/%1/%2? [r=301,nc]
# archive – category:
RewriteCond %{QUERY_STRING} cat=15
RewriteRule ^index\.php /blog/category/aspatial [r=301,nc]
RewriteCond %{QUERY_STRING} cat=14
RewriteRule ^index\.php /blog/category/spatial [r=301,nc]
</IfModule>
### end wordpress
This was how the old URL looked like, http://www.spatiallink.org/gistools/discuss/weblogs/blogs/?title=gisp_and_aicp. Note that there were limitations to permalink, since %year%, %day% or %category% were unknown from the old URL. Fortunately, I had only 2 categories, so this was a cinch.