如何从react-static生成的站点地图文件中删除页面?

时间:2019-03-30 22:32:41

标签: reactjs sitemap react-router-dom react-static

根据documentation,将路由属性noindex设置为true,如以下示例所示,它将阻止该页面包含在站点地图中:

<Route component={privacyPolicyPage} path="/privacy-policy" noindex="true"/>

为完整起见,此处为路线图的相关代码:

//app.js

import React from 'react'
import { Root } from 'react-static'
import { Route, Switch, Redirect} from "react-router-dom";

<Switch>
    <Route exact path="/p1" component={About} />  
    ...
    <Route component={About} path="/about" priority="0.1" />
    <Route component={PrivacyPolicy} PrivacyPolicy path="/privacy-policy" noindex="true" />
    <Route component={p404} noindex="true" />

</Switch>

但是,它既不会删除隐私政策网址,也不会更改任何优先级。

这是我第一次使用reactjs框架,因此很可能我想念一些东西。

1 个答案:

答案 0 :(得分:0)

文档说此道具是布尔类型,所以请尝试以下方法:

<Route component={privacyPolicyPage} path="/privacy-policy" noindex={true}/>

使用noindex="true"将传递一个字符串值...