Forum Moderators: phranque

Message Too Old, No Replies

Exclude subdirectories from redirect

limit scope of htaccess redirects

         

dan121

6:08 pm on Sep 5, 2003 (gmt 0)

10+ Year Member



I'm using htaccess to redirect users to extensionless files on my site:
RedirectMatch permanent /(.*)\.html$ [mysite.com...]

However, I would like to limit this redirection to files that are in my root directory and exclude subdirectories from the redirect rule.

It would be fine to exclude all subdirectories or just exclude specific ones; I don't care.

Is there a way to do this?
Thanks!

jdMorgan

10:38 pm on Sep 6, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Dan121,

Welcome to WebmasterWorld [webmasterworld.com]!

Redirect any URL which contains a slash followed by any number of characters which are not a slash, followed by ".html" to a resource of the same name in root, but without a file extension:


RedirectMatch permanent ^/([^/]*)\.html$ http://mysite.com/$1

Ref: [etext.lib.virginia.edu...]

Jim

dan121

1:15 pm on Sep 8, 2003 (gmt 0)

10+ Year Member



Thanks! Works great! Now why didn't I think of that?