How to fix these types of htaccess issue? I am not expert in htaccess url rewriting, know some basics. What i am facing issue is htaccess code for services page pagination RewriteRule services-(.*)\.php$ services.php?page=$1 [NC,L] Code (markup): When we add other services and rewrite URL RewriteRule service/(.*)-(.*)\.php$ service.php?name=$1&id=$2 [NC,L] Code (markup): If we add "Link Building Services" and URL is like service/link-building-services-1.php then its showing services page ...... I think services word is confuse server and so its going to services page not on link building services page. So how can i avoid this types of issue? Please let me know what i am missing.