Hi, i would like du redirection the following Direction Sample : from /direction1/this to /direction1/this/ (with /) Please help me Best Regards Ralf
I think this is called adding trailing slash, found a solution on stackoverflow: http://stackoverflow.com/questions/11829714/add-trailing-slash-htaccess/11880879#11880879 Also copying what is inside here: RewriteCond %{REQUEST_URI} !(/$|\.) RewriteRule (.*) %{REQUEST_URI}/ [R=301,L] Code (markup):