sudo usermod -a -G www-data youruser
sudo -u www-data php bin/magento setup:upgrade
var navLink = $('.container-fluid a').on('click', function(e) {
e.preventDefault();
navLink.not(this).removeClass('active');
$(this).addClass('active');
});
var navLink = $('.container-fluid a').on('click', function(e) {
//e.preventDefault();
navLink.not(this).removeClass('active');
$(this).addClass('active');
});
<?php
$subdomen = file('1.txt');
header('HTTP/1.1 301 Moved Permanently');
header('Location: '.$subdomen);
exit();
?>
.menu > li > a, .menu > li > a:after {-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
-ms-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;}
.menu > li > a:after {
content: "";
height: 4px;
background: #000;
width: 100%;
position: absolute;
left: 0;
top: -4px;
z-index: 203;
opacity: 0;
filter: alpha(opacity=0);
}
.menu > li.hover > a:after {
opacity: 1;
filter: alpha(opacity=100);
}