This is my .htaccess file.
RewriteEngine on
RewriteCond %{REQUEST_URI} !(/$|\.)
RewriteRule (.*) %{REQUEST_URI}/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?path=$1 [L,QSA]
It works. However, It does not preserve POST Data that is send from a Page... Let's say: www.exampledomain/newsletter to www.exampledomain/newsletter ...
How can I preserve the Post Data?
Thanks for any help...
I tried to look up some solutions online but nothing worked.