Metadata for specific internal page

HI to all…I’m admin user of old v5.0 site…

i need to insert a specific metadata in some internal page only…in particular metadata robots noindex for exclude it by enginers…

I found in CMS > Content setting a specific voice…but I think it’s general item that add meta for all pages…

How can insert it only in specific pages? maybe can I operate with a new page model?

mny tnks
gpaolo

hi @ggrisandi
Unfortunately, my v5.0 knowledge is a bit low to give you a full answer. However, If I understand well you have to insert metadata in some target pages.
I think using a new page model is a good idea so you can define the default behavior for these pages without changing the others.

I guess you have to insert metadata between HTML tags then just use the model regarding if the page should have this metadata.

Let me know If it works,

Cheers

Mny tnks Anthony,

your reply confirm my idea…i know v7 allow this function directly but my PA company use this old version…i hope an upgrade very soon…

I tried already that solution, but without template of my default internal page model i cannot reply it directly (default internal model have xlm configuration only, maybe template it’s inside build) and result was very poor…not reply all first frames correctly…

It’s working…meta will be insert into page…but without correct template in model…reply very bad page frames…and don’t load correctly prefix refer…

<%@ taglib prefix=“wp” uri="/aps-core" %>
<%@ taglib prefix=“c” uri=“http://java.sun.com/jsp/jstl/core” %>
<%@ taglib prefix=“fmt” uri=“http://java.sun.com/jsp/jstl/fmt” %>
<%@ taglib prefix=“fn” uri=“http://java.sun.com/jsp/jstl/functions” %>
<%@page contentType=“text/html” pageEncoding=“UTF-8”%>

">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"  pageEncoding="UTF-8" />
    **<meta name="robots" content="noindex">**
    <title>
        <wp:currentPage param="title" /> - <wp:i18n  key="PORTAL_TITLE" />
    </title>
    <jsp:include page="inc/header-inclusions.jsp" />
</head>
<body>

i’m working on…
gpaolo