Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save softsolution/f3d409348a94c593f69f to your computer and use it in GitHub Desktop.
Save softsolution/f3d409348a94c593f69f to your computer and use it in GitHub Desktop.
<?php if ($_SERVER['REQUEST_URI'] == "/") { ?>
html код будет показан только на главной странице
<?php } else {?>
html код будет показан только на всех страницах, кроме главной
<?php } ?>
<?php /* для профиля пользователя */
if(preg_match('/^\/users\/([a-zA-z0-9\.]+)$/i', $_SERVER['REQUEST_URI'])){ ?>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment