1
I’m working on a website, first site I do without Wordpress
and would like your help to implement friendly urls. I don’t have much knowledge on friendly and .htaccess
but I’m trying to learn. My .htacces
initial is this:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteBase /
RewriteRule ^(.*)$ index.php/$1 [L]
I want to do a post and I don’t want to return something like:
/artigos/eu-quero-aprender-como-funciona-htaccess
Question: I have to make a script that already sends the user url to the bank?
Question 2: Can you please show me how to get the above url through the .htaccess
? It would be a basis for me to continue system.
I’m sorry if my question doesn’t have as many details or if I seem to be asking you to do it for me. It’s not about that.
I have the impression that I’ve seen about 3 such questions on this site
– Wallace Maxters