Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

tl;dr: How do I do the following in a .conf or .htaccess file:

<IfApache22>
  # Do A
</IfApache22>
<IfApache24>
  # Do B
</IfApache24>

Longer question:

With Apache 2.4 the old Order get's deprecated in favor of Require.

In my .htaccess files I have

<FilesMatch "\.(long|list|file|types)$">
  Order allow,deny
</FilesMatch>

which means Apache fails to start unless I enable access_compat. While doing so presents a useful workaround, I want a solution that works with both syntaxes as the config will be distributed to a lot of servers. The question is how I can detect the current version of Apache and apply the correct directive.

I intend to use the file for a framework that is distributed to and used by a lot of people, and I can't control/guarantee that they have or lack any particular server setup, which is why I'd like the file to be 2.2/2.4 "agnostic".

share|improve this question

2 Answers

You can run different versions of Apache on the same host. Q: What's wrong with separate config files in separate directories? I honestly believe that's probably the cleanest approach...

Nevertheless, Apache .conf files allow an <IfDefine>, which you can specify at runtime with "-D":

http://httpd.apache.org/docs/2.0/mod/core.html#ifdefine

share|improve this answer
1  
+1 for the IfDefine and -D option. It doesn't really help me though. Running two versions of the webserver seems like a lot of work when a simple if/else should be able to solve it. Can you expand "separate directories" a bit more? Checking the current version seems like a very nice solution to me. Expanded the question a bit on why. – Letharion May 22 '12 at 17:55

A hack that I have used.

# Apache 2.2
<IfModule !mod_authz_core.c>
    Satisfy Any
</IfModule>

# Apache 2.4
<IfModule mod_authz_core.c>
    Require all granted
</IfModule>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.