I want to rewrite the url of my site, in wamp this work very well, but when I installed the xamp this not worked.
in my file .htaccess i have this
RewriteEngine On
RewriteRule ^([A-Za-z0-9-]+)/?([A-Za-z0-9-]+)?/?([A-Za-z0-9-]+)?/?$ ./index.php?q1=$1&q2=$2&q3=$3&q4=$4&q5=%5
when I open the project in my localhost it shows the report "Notice: Undefined index: q1 in C:\xampp\htdocs\admaposta\index.php on line 6" and also to the other variables.
I've already search for answers and my httpd.conf have "AllowOverride All" in everything and the line "LoadModule rewrite_module modules/mod_rewrite.so" is not commented.