My drop down menu is not working after removing .php extension using .htaccess. I managed to work with CSS and Pictures buy changing the links to full links but with dropdown menu I don't know where I am lacking.
I get this error in http server : Failed to load resource: the server responded with a status of 404 ()
My code is below;
<div style="float:right;">
<?php if(!empty($_SESSION['uid'])){?>
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
<i class="services-icon"></i><span class="fa fa-user fa-2x"></span> <br><?php echo $_SESSION['name'];?>
<span class="caret"></span>
</a>
<?php } ?>
<ul class="dropdown-menu dropdown-menu-right">
<li><a href="https://via4holiday.com/MyDashboard">Home</a></li>
<li class="divider"></li>
<li><a href="https://via4holiday.com/logout">Logout</a></li>
</ul>
</div>