I just upgraded my WAMP server from an older Apache version 2.2.21 to a newer version of WAMP that includes Apache 2.4.37 and I am experiencing issues with the mod_rewrite.so module. I made sure this module is turned on in both versions. However in the new version my site rewrites the URLs correctly but my PHP $_GET arrays are empty when I pass more than one parameter. One works, two or more do not.
I think this has something to do with the httpd.conf file in the <Directory> section. My eyes are glazing over trying to understand the new settings that will allow the parameters to be read but I am failing. Can you help me?
Old Apache settings:
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
New Apache settings:
<Directory />
AllowOverride FileInfo
Require all denied
</Directory>
I think this has something to do with the httpd.conf file in the <Directory> section. My eyes are glazing over trying to understand the new settings that will allow the parameters to be read but I am failing. Can you help me?
Old Apache settings:
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
New Apache settings:
<Directory />
AllowOverride FileInfo
Require all denied
</Directory>