Anyone can help me, i want to rewrite url from
http://www.fvilla.in/single.php?username='ankit12541'
to
Anyone can help me, i want to rewrite url from
http://www.fvilla.in/single.php?username='ankit12541'
to
I believe you mean rewriting the URL using the .htaccess
file. Your file should look like this:
Options -Indexes
Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^fvilla.in$ [NC]
RewriteRule ^/([^/]+)$ /single.php?username=$1
</IfModule>
That would work, but it doesn't really make sense, since it would rewrite any URL in your domain.
So it would be better to do
http://www.fvilla.in/single.php?username='ankit12541'
to
http://fvilla.in/user/ankit12541
using the .htaccess file like this:
Options -Indexes
Options +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^fvilla.in$ [NC]
RewriteRule ^/user/([^/]+)$ /single.php?username=$1
</IfModule>