I'm interested in converting my MT3.2 blog output files from html to php, and since the blog is old (2+ yrs) and med. sized (2k posts), there are a lot of links, internal and on the web, to individual posts that I'd like to maintain.
From what I understand, apache's mod_rewrite can do this, and dynamically rewrite an incoming URL request to change the .html extension to .php (which, I think, is all that I'll need, since the archive structure isn't changing.)
1) Is mod_rewrite something I have to request to be activated/installed on my (shared/reseller) server?
2) where is it, and where's .htacess, which I apparently need to edit?
3) a SixApart forum on converting MT to PHP [link here] includes this script:
RedirectMatch (.*)\.shtml$ http://greengabbro.net$1.php
which, if I understand correctly, should be altered to this, since my extensions are .html, not .shtml. Right?
RedirectMatch (.*)\.html$ http://mysite.com$1.php
does it matter that there's no www? I usually don't use it, but a lot of site readers/linkers do.
thanks in advance,
oh, and 4) Ideally, to catch dead links or links that have changed more than just *.php, I'd like to add something to my customized 404 page that parses an incoming URL and present links to both/either a close-matching URL or a related search result. I think this'd come a lot from google images searches, for example, where the referring url has google search terms in it, but where I'd like to serve up the image in context, not just hand it over raw/alone. Or is this another topic altogether?