Hi,
I've just set up my AMP stack on my own rather than using MAMP and such, this is not as easy as I thought. Some obstacles I've overcome already but now this is biting me when trying to access a PW installation:
Request exceeded the limit of 10 internal redirects due to probable configuration error.
I've researched a bit but did not come to any conclusion other that it has to do something with rewrites.
httpd.conf
<Directory "/my-web-root/">
Options -Indexes +FollowSymLinks
AllowOverride All
DirectoryIndex index.php index.html
Order allow,deny
Allow from all
</Directory>
httpd-vhosts.conf example
I am actually using dnsmasq to map my domains to directories like so:
<VirtualHost *:80>
VirtualDocumentRoot "/my-web-root/%1"
ServerAlias *.dev
UseCanonicalName Off
</VirtualHost>
But using this standard approach has the same issues:
<VirtualHost *:80>
VirtualDocumentRoot "/my-web-root/some-client"
ServerName some-client.dev
ServerAlias *.dev
UseCanonicalName Off
</VirtualHost>
Any suggestions? Thanks!