I have a link like this: http://localhost/dimi/home?go=post&app=tagline&post_id=222
How do I rewrite the url to look like this: http://localhost/dimi/home/post/tagline/222
What tried is:
RewriteEngine On
RewriteRule ^home$ home.php [L]
RewriteRule ^home/([^/]+)/?$ home.php?go=$1 [L,NC]
I just want to hide the variables for security purposes.
Thank you