I am using htaccess for URL rewriting to transform URLS this way:
www.url.com/product.php?id=3
into
www.url.com/laptops/
I found out that when the slash / in the end is or isn't there, then relative links are not called the same way (css files or pictures).
I found out that on the Apple website, if you remove the slash at the end of "www.apple.com/mac/" and press enter, the slash will be re-added automatically, this is what I would like to do.
I tried several solutions I found, such as
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*[^/])$ /$1/ [L,R=301]
But with this solution, if I take out the slash in the end and press enter, the navigator will "rewrite" the exact folder position in the FTP server, resulting in a "file not found" error.
Thank you in advance for your help...