server removes duplicate slashes

dymngipania

New Member
server removes duplicate slashes from url,if i try to get http://mysite.com/a//b/with .htaccess:\[code\]RewriteEngine OnRewriteBase /RewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule ^(.*)$ /index.php?r=$1 [L]\[/code\]string that comes to php script is "a/b/" but expected "a//b/"how can i disable removing slashes from url?
 
Back
Top