I want to make URL Rewrite using Mysql like this http://www.mysite.com/category.php?id=1 http://www.mysite.com/category.php?id=2 I want that based on that ID I pull URL from database I am looking to make URL like this http://www.mysite.com/Tech-news/ http://www.mysite.com/Apple-news/ any one tell me how I can do this ?
You can try this rewrite rule in your .htaccess RewriteEngine On RewriteRule ^([a-zA-Z0-9_-]+)/$ category.php?id=$1