Hi Friends Does anyone help me to remove trailing slash from the URL in magento? currently my URL is like http://www.websitename.com/index.php/ i want to change this URL to http://www.websitename.com/index.php Thanks in advanced
<?php $url = "http://www.websitename.com/index.php/"; preg_match('/^http:(.*)\/$/i', $url, $matches); $whatever = substr($matches[0], 0, -1); echo $whatever; ?> PHP: This should do it.