404 page not found on every page except homepage on Drupal 8 running on nginx
Check virtualhost configuration file. Use the below nginx recommended configuration as base https://www.nginx.com/resources/wiki/start/topics/recipes/drupal/
Check virtualhost configuration file. Use the below nginx recommended configuration as base https://www.nginx.com/resources/wiki/start/topics/recipes/drupal/
Edit the “page.tpl.php” file, look for the below module and either remove the complete module if you want both login and register removed or edit it to remove only register link. <?php if (!$is_admin): ?> <div id=”authorize”> <ul><?php global $user; if ($user->uid != 0) { print ‘<li>’ .t(‘Logged in as ‘). ‘<a href=”‘ .url(‘user/’.$user->uid). ‘”>’…