i have problem with rewrite url in .htaccess
Options +FollowSymLinks
RewriteEngine On
RewriteBase /web/
RewriteRule ^([^/]*)$ artist.php?artist=$1 [R]
i'm used [R] because i can see that mistake..
if i'm type:
http://localhost/web/djardy but it's redirect to :
http://localhost/web/artist.php?artist=artist.php
it's should be redirect to :
http://localhost/web/artist.php?artist=djardy
and i change the .htaccess code, but still not working..
RewriteEngine On
RewriteRule ^([^/]*)$ artist.php?artist=$1 [R]
thanks ..