I created the file .htaccess
and included it in the root of my site with the following code:
RewriteEngine On
RewriteRule ^([a-zA-Z0-9_-]+)$ teste.php?u=$1
RewriteRule ^([a-zA-Z0-9_-]+)/$ teste.php?u=$1
But it's being ignored. When I used the Linux server it worked fine.
Any suggestions?