I have a current wordpress blog with the blog posts URLs structured as http://somedomain.com/2010/02/postname
I’m now installing a zend framework implementation at the base level http://somedomain.com/
I DON’T want my blog to have a different url structure. like http://somedomain.com/blog/2010/02/article-name
Any ideas on how I can best keep the old url structure and still have zend framework live at /
My thought was move the blog to /blog and do a url rewrite in there to make everything appear as though its at / , but i don’t think that will work ?
Create a subdomain for your site. wordpress.site.com is for wordpress, zend.site.com is for your zend code. Of course you should use better names than that but you get the idea.
if you are using apache, put this in your .conf
mod_rewrite could do this, provided that your Zend controllers only have [a..z] chars.
http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html