Dear masters, how to use
Requests for http://www.test.com/aa/bb/cc are forwarded to
http://www.test.com/index.php...
Not a jump
Please give me some advice, through the .htaccess file
<IfModule mod_rewrite.c> <IfModule mod_negotiation.c> Options -MultiViews </IfModule> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.+)/(.+)/(.+)$ index.php?var1=$1&var2=$2&var3=$3 [L] </IfModule>