I just tried an install of typo without using a virtualhost, as I
really like having my home page be at http://ranganath.com/~anoop/ and
wanted my blog at http://ranganath.com/~anoop/blog/ (Please ignore the
old movable type install at the original location. i am so ashamed).
Anyway, a few changes need to be made to the stylesheet and template or
it spits out a few bad links.
articles.rhtml:
- <link rel="EditURI" type="application/rsd+xml" title="RSD"
href="/xml/rsd" />
+ <link rel="EditURI" type="application/rsd+xml" title="RSD" href="<%=
url_for :controller => '/xml/rsd' %>" />
- <h1><a href="/"><%= config_value('blog_name') %></a></h1>
+ <h1><%= link_to config_value('blog_name'), { :controller => '/' }
%></h1>
base.css
The four references to /images need to be to ../images
.htaccess needs to be modified also, but this should NOT be commited
into the repository, but maybe mentioned in a how-to somewhere.
I'd appreciate it if the changes to articles.rhtml and base.css are
committed, as I believe the changes make them more "correct".
Thanks!
Anoop