I don´t know if i writte right the links for use with URLs Friendly because for me don´t works
Actually i use this kind of links :
<a href="index.php?id=1578&title=Mike_Manager_Best&name=Mike">Test</a>
The case it´s if i use this kind of links don´t change nothing in the url, and finally show the same
If you can see my .htaccess, the url must be rewrite, but don´t change
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} \s/index\.php\?id=([0-9]+)&title=([^\s&]+)&name=([^\s&]+)\s [NC]
RewriteRule ^ %1/%2/%3? [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([0-9]+)/([^/]+)/(.+)/?$ index.php?id=$1&title=$2&name=$3 [L]
</IfModule>
By this my question about if my links are right for use with my .htaccess with URLs Friendly, because when i click in link in the brownser in the part of url, dont show any change as for example :
http://test.com/1578/Mike_Manager_Best/Mike
Thank´s for the Help in advanced