Search engine Meta tags

2
How do I add Search Engine Meta tags to Mendix web pages?  I know how to do it in HTML pages but don't know how to do it in on Mendix pages.    I found a simple way to do this. Edit the Index.html from your Mendix Project Theme folder.   Within the <Head> tags you will see. <head>         <meta charset="utf-8">         <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">         <title>Mendix</title>         <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">         <meta name="apple-mobile-web-app-capable" content="yes">         <link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css?{{cachebust}}">         <link rel="stylesheet" href="mxclientsystem/mxui/ui/mxui.css?{{cachebust}}">         <link rel="stylesheet" href="styles/css/lib/lib.css?{{cachebust}}">         <link rel="stylesheet" href="styles/css/custom/custom.css?{{cachebust}}">     </head>   Add the the description and keywords meta Tags. <meta name="description" content="Crash For Cash"> <meta name="keywords" content="Stop Crash 4 Cash, crash for cash, Crash4Cash, StopCrash4Cash">  Compile and View the page. If you 'Inspect' the elements in the browser you can see the added meta tags.
asked
3 answers
1

The blogpost ronald links to is dated. These days google can index javascript applications. You can test how well this works with the fetch as google tool part of the google webmaster tools. Here's an example how google see the following page: https://socialshare.mxapps.io/p/publicfeed

 

answered
0

You might want to check this blogpost: http://www.mxblog.eu/p/post/2533274790396705

Regards,

Ronald

 

answered
0

This looks like a lot of work to add 2 simple meta data tags into the page head tags on the home page.

There must be a better and quicker way to do this.

answered