I've created a react.js + router v4 project via facebookincubator/create-react-app, and I use Apache 2 without backend language to run my project.
I've read this official doc:
Generating Dynamic Tags on the Server
Since Create React App doesn’t support server rendering, you might be wondering how to make tags dynamic and reflect the current URL. To solve this, we recommend to add placeholders into the HTML, like this:
<!doctype html>
<html lang="en">
<head>
<meta property="og:title" content="__OG_TITLE__">
<meta property="og:description" content="__OG_DESCRIPTION__">
Then, on the server, regardless of the backend you use, you can read index.html into memory and replace OG_TITLE, OG_DESCRIPTION, and any other placeholders with values depending on the current URL. Just make sure to sanitize and escape the interpolated values so that they are safe to embed into HTML!
If I use apache run my project without any backend language, is there have any way to Generating Dynamic Tags?
Thanks.