So I have this in my .htaccess
RewriteEngine On
RewriteBase /rewrite
RewriteRule ^(.*)$ user.php?id=$1 [L]
and I have a php file
<?php
echo "username is ".$_GET['id'];
?>
so according to me if I visit http://127.0.0.1/rewrite/theusername the php file should return theusername...