This is an Apache question you've probably come across before. I want to have one source package that I can deploy to my workstation, my staging server, and my production server, but for it to load different .htaccess settings based on what the URL was.
Note that I was using a kludge with an IfModule call, but that won't work with our new production server because it shares all the same modules as my staging server.
Note I need to bundle SetEnv with these rewrites. Currently if you use RewriteCond, it only ties to the following RewriteRule, but not the SetEnv underneath.
Here is a simple example that should be enough for you to change it to meet your requirements:
Instead of using SetEnv, use the environment variable setting capabilities of RewriteRule itself:
Although I prefer doing this sort of thing by passing flags to the httpd process at startup and looking for them using IfDefine blocks.
I tried the
IfDefine
method and it didn't work, even though the defined variable i'd passed into the Apache startup was definitely showing up inphpinfo()
on theAPACHE_ARGUMENTS
line.I tried another method and it worked perfectly. In your
.htaccess
file you need something like:# Is the domain local (i wanted to check two names)? <If "%{SERVER_NAME} != 'localhost' && %{SERVER_NAME} != 'myproject.localhost'"> # I wanted to password protect the production server only AuthType Basic AuthName "Restricted area" AuthUserFile /app/.htpasswd require valid-user </If>
I'm using Apache 2.4. Might not work for earlier versions.
On Ubuntu Linux, the
IfDefine
's variable is set inand is called
APACHE_ARGUMENTS
. So, at the bottom of that file I had to add:...and then bounce the server with:
On other systems:
However, there's a Debian article on this topic that discusses this here. In that example, the file to edit is /etc/default/apache2 and the variable is called
APACHE_DEFINES
.Likewise, on some systems it is a variable named
OPTIONS
that is set in/etc/sysconfig/httpd
.So, what you really need to do is look for the start section in your apache2ctl file. So, begin by doing a
whereis apache2ctl
to find where that script is, cat it out and find the start section with the apache2 directive in it, and see if the variable it passes isOPTIONS
,APACHE_ARGUMENTS
,APACHE_DEFINES
, or something else. Then, see which file you need to edit by experimentation with either/etc/sysconfig/httpd
,/etc/default/apache2
, or/etc/apache2/envvars
.