Both URL With PHP and Non-PHP Access after RewriteRule In Htaccess – Apache
Access Both URL With PHP and Non-PHP in PHP project after applying Htacces Rules RewriteRule ^c/([a-zA-Z0-9-/]+)$ category.php?id=$1 [L] RewriteRule ^p/([a-zA-Z0-9-/]+)$ detail.php?post=$1 [L] Here I access both URLs like www.example.com/c/category-name and www.example.com/category.php?id=12 but I want only www.example.com/c/category-name URL. I don't Want…