(Thanks for all previous help)
The php web video script that I’m using displays user/member account pages in google searches.
The url displaying the page, for example, is like https://webvideosite.com/@chrisj
I’m looking for guidance/suggestions on how to have the user/member account pages not appear in searches, either by blocking that somehow,
and only having access to it if you are logged into the site.
I’ve added this (with some limited help from the developer):
<?php
if ($pt->second_page == ‘about’)
echo "<meta name='robots' content='noindex'>'";
?>
but, I don’t know how to test it to see if it works or not.
Also, I’d like to have the user/member account pages only be accessible to another logged-in user/member.
I look forward to any replies/help.