How can I make this url friendlier yet?

0

I am developing this site and studying a bit about friendly url's already who was a Wordpress user and now I'm moving on to frameworks and systems. What I want to know is if the url shown below may be even friendlier.

The method I originally intended to use was to put the id of the end-of-post link and retrieve this ID on the treatment.php landing page. But then I thought ...

Question: Can this url be friendlier yet and not have this parameter in the end? How else could I do this?

URL : http://dent.axitech.com.br/tratamentos/aparelhos-dentarios__35

HTACCESS :

Options +FollowSymLinks

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteBase /
# RewriteRule ^(.*)$ index.php/$1 [L]

RewriteRule ^home(.*) index.php
RewriteRule ^contato(.*) contato.php
RewriteRule ^tratamentos/(.*) tratamentos.php?tratamentos=$1
    
asked by anonymous 15.11.2015 / 18:54

0 answers