I currently have the following rule in .htaccess:
RewriteRule ^fale-conosco/?$ view/fale_conosco.php [NC,L]
And I'd like you to be able to enter a friendly URL after you contact us /.
Example:
fale-conosco/ajuda
For this I am using a regex but it is not working:
/^fale-conosco\/*([a-zA-Z0-9])*/g
I've tried a lot of regular expressions but so far nothing has worked.
When I tested the regexr I got an error when I added localhost
in front of the rest of the URL, such as ignoring what's in front of fale-conosco/
?