If you’ve written something that intercepts HTTP requests for missing pages and makes an educated guess where they should go, do you mind sharing it?
-
Archives
- September 2024
- March 2024
- January 2024
- November 2023
- October 2023
- September 2023
- June 2023
- April 2023
- March 2023
- February 2023
- December 2022
- October 2022
- September 2022
- July 2022
- June 2022
- May 2022
- December 2021
- November 2021
- October 2021
- September 2021
- August 2021
- July 2021
- April 2021
- March 2021
- January 2021
- December 2020
- October 2020
- August 2020
- April 2020
- March 2020
- February 2020
- November 2019
- July 2019
- June 2019
- April 2019
- March 2019
- February 2019
- January 2019
- December 2018
- October 2018
- April 2018
- February 2018
- November 2017
- September 2017
- July 2017
- June 2017
- May 2017
- April 2017
- March 2017
- February 2017
- January 2017
- December 2016
- November 2016
- August 2016
- July 2016
- June 2016
- May 2016
- March 2016
- February 2016
- January 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- June 2015
- May 2015
- April 2015
- March 2015
- January 2015
- December 2014
- November 2014
- October 2014
- September 2014
- August 2014
- July 2014
- June 2014
- May 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- June 2013
- May 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- October 2005
- September 2005
- August 2005
- July 2005
- June 2005
- May 2005
- April 2005
- March 2005
- February 2005
- January 2005
- December 2004
- November 2004
- October 2004
- September 2004
- August 2004
- July 2004
- June 2004
- May 2004
- April 2004
- March 2004
- February 2004
- January 2004
- December 2003
- November 2003
- October 2003
- September 2003
- August 2003
- July 2003
- June 2003
- May 2003
- April 2003
- March 2003
- February 2003
- January 2003
- December 2002
- November 2002
- October 2002
- September 2002
- August 2002
- July 2002
- June 2002
- May 2002
- April 2002
- March 2002
- February 2002
-
Meta
I used mod_rewrite in my .htaccess file, in order to deal with a change in URL format. What used to be index/P175 became weblog.php?id=P175, along with a number of similar changes.
That part of my .htaccess looks something like this:
RewriteEngine On
RewriteRule ^index/(.*)/$ /weblog.php?id=$1 [R=301,L]
RewriteRule ^index/(.*)$ /weblog.php?id=$1 [R=301,L]
RewriteRule ^comments/(.*)/$ /comments.php?id=$1 [R=301,L]
RewriteRule ^comments/(.*)$ /comments.php?id=$1 [R=301,L]
RewriteRule ^more/(.*)/$ /more.php?id=$1 [R=301,L]
RewriteRule ^more/(.*)$ /more.php?id=$1 [R=301,L]
RewriteRule ^archives/(.*)/$ /archives.php?id=$1 [R=301,L]
RewriteRule ^archives/(.*)$ /archives.php?id=$1 [R=301,L]
RewriteRule ^archivesum/(.*)/$ /archivesum.php?id=$1 [R=301,L]
RewriteRule ^archivesum/(.*)$ /archivesum.php?id=$1 [R=301,L]
I probably have something out of whack in there — I am a complete tyro at writing rewrite rules — but it mostly seems to work for me.
Hm, that does most of what I have in mind. Is there a syntax to convert an unknown number of “-” to “%20”?
My ideal redirector would go a little bit further and infer, from the referral source, what specific item was sought.
I think that both should be possible. That’s just a “regular expression”, so something like “–*” should match a series of one or more hyphens. (I think that “-+” would, too.)
And you should be able to do different things depending on referrer by using the “RewriteCond %{HTTP_REFERER}” rules.
But like I said, I’m a complete tyro at mod_rewrite, so I’m not in a position to give any definitive answers or suggestions.
It’s subtler than a regular expression. I want to convert, for example, /blog/2004/06/how-many-readers-have-i-in-this.htm to wp/?s=how+many+readers+have+i+in+this&submit=Search — and I know no syntax to catch that.
I’m way beyond the limits of my mod_rewrite expertise here, but maybe it could be handled by something like:
RewriteRule ^(.*)-(.*)$ $1+$2 [N]
RewriteRule ^blog/[0-9]+/[0-9]+/(.*)\.htm$ wp/?s=$1&submit=Search
The “N” causes the RewriteRules to be restarted from the beginning, so you’d want this near the top of the list of rules.
You could also do it using “[R]” rather than “[N]”. That should cause the user’s browser to re-request with the modified URL, over and over as each – is replaced with a +, until finally there are no hyphens left. I’m not sure there’s any advantage to doing it that way, though, and there’s the disadvantage of having the browser re-issue the request a bunch of times. (I used R=301 in my own rules because the pages had moved and I wanted the user to bookmark the new addresses, not the old ones.)
Another alternative, if you’ll accept a limit on the number of hyphens removed, is to use rule chaining. This sequence will (I think) remove up to eight hyphens:
RewriteRule ^([^-]*)-(.*)$ $1+$2 [C]
RewriteRule ^([^-]*)-(.*)$ $1+$2 [C]
RewriteRule ^([^-]*)-(.*)$ $1+$2 [C]
RewriteRule ^([^-]*)-(.*)$ $1+$2 [C]
RewriteRule ^([^-]*)-(.*)$ $1+$2 [C]
RewriteRule ^([^-]*)-(.*)$ $1+$2 [C]
RewriteRule ^([^-]*)-(.*)$ $1+$2 [C]
RewriteRule ^([^-]*)-(.*)$ $1+$2
Actually it should work without the chaining, too. The chaining just saves a bit of mod_write a bit of effort because it will quit looking for hyphens after the first time it doesn’t find one.
By the way, the second RewriteRule above – the one with the query string – has the salutary effect of causing any user-supplied query string to be discarded. This is probably a bit of a security benefit.
There isn’t much you can’t do with mod_rewrite… once you figure out HOW to do it. The official docs call it “the Swiss Army Knife of URL manipulation” but also acknowledge, “Despite the tons of examples and docs, mod_rewrite is voodoo. Damned cool voodoo, but still voodoo.”
My attempt at iterative replacement resulted in what looked like an infinite loop, so I brute-forced it: there are only four such files that I know to have been cited elsewhere.
In other news, it’s unfortunate that the conversion from Blogger did not preserve the <a name> tags. I mean to restore a few of them by hand.