2
有什麼方法可以在Maven生成的網站中添加自定義的meta標記嗎?Maven生成的網站中的Meta關鍵字
<meta name="keyword" content="keyword1, keyword2"/>
謝謝!
有什麼方法可以在Maven生成的網站中添加自定義的meta標記嗎?Maven生成的網站中的Meta關鍵字
<meta name="keyword" content="keyword1, keyword2"/>
謝謝!
容易,你只Inject some XML into the <head>
例如在你的src/site/site.xml
<project>
...
<body>
...
<head>
<meta name="keyword" content="keyword1, keyword2" />
</head>
...
</body>
...
</project>
太棒了!它像一個魅力。 感謝:-) – tduchateau