I am trying to redirect all traffic through index.php.
Here is my .htaccess file:
RewriteEngine On
RewriteRule ^(.*)$ /index.php?ref=$1 [NC,L]
I'm always getting HTTP 500 errors, and I check the error.log and I see that its the internal recursion error. Can anyone help me with this? Thanks.