<script>
document.addEventListener("DOMContentLoaded", function() {
const nofollowLinks = [
"https://yuorsyte1.com",
"https://yuorsyte2.com/"
];
nofollowLinks.forEach(url => {
document.querySelectorAll(`a[href='${url}']`).forEach(link => {
link.setAttribute("rel", "nofollow noopener");
});
});
});
</script>
<script>
document.addEventListener("DOMContentLoaded", function() {
document.querySelectorAll("a").forEach(link => {
if (!link.href.includes(window.location.hostname)) {
link.setAttribute("rel", "nofollow noopener");
}
});
});
</script>