the destination file the request will be linked to is defined by the rewrite-rule. All you have to do is take your URL and apply the regluar expressions on it, the first match is your file. From there it’s up to the routers implementation and configuration what else is loaded.
What you have are not files, that’s only URLs. The files are specified within the .htaccess, according to the regex that follows the keyword “RewriteRule”. Just take a tutorial about mod_rewrite.
from that file your content management system requires you to change this data, the file that you located applying the rules within the htaccess on the targeted URL.
I don’t know much about .htaccess, and it’s not really a PHP topic, but I suspect that @chorn is suggesting that you look at that file, interpret the rules in it, to decide which file you should examine. For example, I suspect that the line
RewriteRule ^services/?$ services-full.php [L]
looks at the incoming URL, sees that it has the word “services” at the end, and redirects to the file services-full.php. Similarly the next rule in sequence
looks for services followed by something, parses that “something” into a variable called $1, and passes that in to services.php as the id parameter. If neither of those match, then the next line
RewriteRule ^services/?$ services.php [L]
looks for anything else containing services, and sends it to services.php with no parameters.
There’s plenty of documentation on .htaccess and rewrite rules around the web, come back if you have any further queries on it. Someone who actually knows about it may be able to help.
So you have finally found the files to your URL. Whats the problem within these files now that you think about sharing any code? what have you tried to get to the core of the problem by yourself and what kind of help do you expect by sharing the code?
Surely as those URLs all have services contained in them, they will all be redirected to services.php and the id parameter (as $_GET['id']) will contain things like “heavy-collision-repair”, “auto-dent-removal” and so on? So you’ve found the file(s) you need.
You’ve found out now that your rewrite rules take those URLs, and redirect to services.php and provide the last bit of the URL as a parameter to it. If you’ve found services.php, which you must have as you offered to share the code of it, then you’ve found the file. How each of those URLs is handled is within services.php.