links and search are not working on my codeigniter website(http://www.mp3volt.com/) except the language menu I have try everything with .htaccess but still not working. When I have click on the links it is not working just display # sign after the url (http://www.mp3volt.com/#), but when it will open if I open it in a new tab.
dropdown link's sample list code
<li><a href="<?php echo base_url(); ?>tag/<?php echo encode($value); ?>" class="removehref" onClick="return false;" data-tag="<?php echo encode($value); ?>"><?php echo ucwords($value); ?></a></li>
config.php
$config['base_url'] = '';
$config['index_page'] = 'index.php';
$config['uri_protocol'] = 'AUTO';
.htaccess
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php?/$0 [PT,L]