1
I am using the following structure in addresses/links to url friendly in fixed of my page:
RewriteRule ^teste(.*)$ teste.php
So, my address is as follows:: www.site.com/teste
It turns out that if the user type the test word together with another term, the site finds the same way, and should send to the error page 404..
Ex: www.site.com/teste123
With the link above typed, it redirects to the test page normally..
You want the regex to get it only if it goes
teste/
is that it? in this case test^teste\/(.*)$
– Sergio
Rewriterule dicionario/(.*)$ dicionario.php <- So was my url. However, now the server does not find anything and sends to error 404..
– Cobra