6

I have a hosted server.

When I update .htaccess, are the updated rules immediately in effect?

I understand that hosters can do what they want, and it's impossible to know without knowing the particular policy of this particular hoster. But in the normal case, if I update .htaccess, does Apache re-read it immediately? Or is there something I can do to tell Apache to re-read it?

or what?

Cheeso
  • 572
  • 3
  • 18

1 Answers1

12

The .htaccess is loaded up on each request, even if it's in internal one (using mod_modrewrite)

Take and look at http://httpd.apache.org/docs/current/howto/htaccess.html and especially the 'When (not) to use' section

Ryan Gibbons
  • 998
  • 9
  • 20