htaccess url rewrite multiple url
问题 I've a problem to rewrite url in my site with .htaccess index.php $op = $_GET['op']; switch ($op) { case "src": include("src.php"); break; case "dts": include ("dts.php"); break; default: include("home.php"); break; } Link to rewrite index.php?op=src index.php?op=dts&idric=20&sp=2 .htaccess Options +FollowSymLinks RewriteEngine on RewriteRule \.(css|jpe?g|gif|png|js|ico)$ - [L] RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)/$ index.php?op=$1 [L,QSA]