Dear masters, how to use
in apacheRequests 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
ringa_lee2017-07-04 13:47:37
<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>