I want to remove completely ALL slashes or backslashes at the end of the URL.
http://www.mp7.org/?site=69.com\\\\\\\\\\\\\
via .htaccess or PHP.
The following .htaccess rule do NOT work:
RewriteRule ^(.*)[/\]+$ $1 [L,R=301]
#### mod_rewrite in use
Options +FollowSymlinks
RewriteEngine On
Please provide alternate solution.