Hey guys,
I tried to rewrite the url from "index.php?do=var" to "var.html".
The rewrite works fine, but when I add a GET variable to the url like "var.html?id=34" the php code doesnt get the $_GET['id'].
here is the .htaccess:
Options +FollowSymlinks
RewriteEngine On
RewriteRule ^([^/]*)\.html$ index.php?do=$1 [L]
can someone help me solving the problem?