I'd like to redirect an entire directory to one specific file.
March 13, 2007 8:10 PM
Subscribe
301 redirectrs in .htaccess: how do I redirect calendar/* to /calendar.html ? I've tried modifying various examples online and they result in either "internal server error" or a 404 caused by incorrectly redirecting /calendar/* to /calendar.html/* .
Two examples from the experimentation (I'm in over my head; I just want this to work):
# redirect 301 /calendar http://www.domain.com/calendar.html
# 404 due to mistake above.
# RedirectMatch 301 ^/calendar/(.*).htm$ http://www.domain.com/calendar.html [L]
# internal server error
posted by Tuwa to computers & internet (12 comments total)
4 users marked this as a favorite
should do the trick, but I could be wrong.
posted by niles at 8:19 PM on March 13, 2007