1
My URL friendlyl is like this: guaraparivirtual.com.br/news-Gadfly/Moqueca-capixaba-agua-na-boca/9/
I would like there to be an exchange of the order of place of the parameters from the last to the penultimate.
Thus: guaraparivirtual.com.br/noticias-Guarapari/9/moqueca-capixaba-agua-na-boca/
I did everything but without success.
Follows my code from .htaccess
URL
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^noticias-guarapari/([a-z0-9-]+)/([a-z0-9-]+)/?$ /noticias-guarapari.php?idnoticia=$2&nome=$1 [NC]
</IfModule>
I know it seems obvious, but I changed the order to:
RewriteRule ^noticias-guarapari/([a-z0-9-]+)/([a-z0-9-]+)/?$ /noticias-guarapari.php?nome=$1&idnoticia=$2 [NC]
And I called the url: guaraparivirtual.com.br/noticias-Guarapari/9/moqueca-capixaba-agua-na-boca/
mysql content does not load when this last change I made is made, only the first one that works perfectly.