I'm new in .htaccess file. i m searching on net but i m not able to change and rewrite URL in PHP... E.G
Show URL Like :
localhost/web/site/view_project.php?vp=14
I want show my URL like
localhost/web/site/project/14/
In php i m use this code
href="view_project.php?vp=<?php echo $c_id>" echo $c_project_title
In .htaccess file I'm using
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^project/([0-9]+)/?$ /view_project.php?vp=1& [L,R]
Now please tell what need to change in PHP Code and HTACCESS file... I'm totally new in this.