As we all know, Vue SPA single-page application is not friendly to SEO. Of course, there are corresponding solutions. By searching for information, there are probably the following 4 methods. (I have only used the first and third options) 1.Nuxt server-side rendering application deployment (SSR server rendering) About server rendering: According to the Vue official website, there are requirements for the Vue version and the server, which needs to support the nodejs environment. Advantages: Better SEO, since search engine crawlers can directly view the fully rendered page; Disadvantages: (pitfalls encountered during development) 1. Two execution environments for one set of code will cause various problems. For example, if there is no window or document object on the server side, the solution is to add a judgment and execute it only if it is the client side: if (process.browser) { console.log(window); } To reference npm packages with DOM operations, such as wowjs, you cannot use the import method. Instead, use: if (process.browser) { var { WOW } = require('wowjs'); require('wowjs/css/libs/animate.css'); } 2.Nuxt asyncData method, get data before initializing the page, but only limited to page component calls: // Load multiple interfaces concurrently: async asyncData ({ app, query }) { let [resA, resB, resC] = await Promise.all([ app.$axios.get('/api/a'), app.$axios.get('/api/b'), app.$axios.get('/api/c'), ]) return { dataA: resA.data, dataB: resB.data, dataC: resC.data, } } 3. If you use the v-if syntax, you may also encounter this error when deploying it online:
According to issue 1552 on github nuxt, you need to change v-if to v-show syntax. 2.Nuxt static application deployment When Nuxt.js generates static packages, dynamic routes are ignored. -| pages/ ---| index.vue ---| users/ -----| _id.vue To generate static pages using dynamic routing, you need to specify the values of the dynamic routing parameters and configure them in the routes array. // nuxt.config.js module.exports = { generate: routes: [ '/users/1', '/users/2', '/users/3' ] } } Run the package and you can see the packaged page. // nuxt.config.js import axios from 'axios' export default { generate: routes: function () { return axios.get('https://my-api/users') .then((res) => { return res.data.map((user) => { return { route: '/users/' + user.id, payload: user } }) }) } } } Now we can access the payload from /users/_id.vue as follows: async asyncData ({ params, error, payload }) { if (payload) return { user: payload } else return { user: await backend.fetchUser(params.id) } } If your dynamic routing has many parameters, such as product details, it may be as high as thousands or tens of thousands. An interface is needed to return all IDs, and then traverse the IDs when packaging and package them locally. If a product is modified or removed from the shelves, it needs to be packaged again. If the quantity is large, packaging is also very slow, which is very unrealistic. Advantages:
insufficient:
3. Prerendering prerender-spa-plugin If you’re only using it to improve the SEO of a few marketing pages (e.g. /, /about, /contact, etc.), then you probably need prerendering. Instead of using a web server to dynamically compile HTML on the fly, prerendering simply generates static HTML files for specific routes at build time. The advantage is that it is easier to set up prerendering, and allows you to serve your frontend as a completely static site. $ cnpm install prerender-spa-plugin --save vue cli 3 vue.config.js configuration: const PrerenderSPAPlugin = require('prerender-spa-plugin'); const Renderer = PrerenderSPAPlugin.PuppeteerRenderer; const path = require('path'); module.exports = { configureWebpack: config => { if (process.env.NODE_ENV !== 'production') return; return { plugins: [ new PrerenderSPAPlugin({ // The path of the generated file can also be consistent with the path packaged by webpakc. // The following sentence is very important! ! ! // This directory can only have one level. If the directory level is greater than one level, there will be no error prompt during generation, and it will just get stuck during pre-rendering. staticDir: path.join(__dirname,'dist'), // Corresponding to your own routing file, for example, if a has parameters, you need to write it as /a/param1. routes: ['/', '/product', '/about'], // This is very important. If this section is not configured, precompilation will not be performedrenderer: new Renderer({ inject: { foo: 'bar' }, headless: false, // In main.js, document.dispatchEvent(new Event('render-event')), the event names of the two should correspond. renderAfterDocumentEvent: 'render-event' }) }), ], }; } } In main.js, add: new Vue({ router, render: h => h(App), mounted () { document.dispatchEvent(new Event('render-event')) } }).$mount('#app') Note: mode: "history" must be set in the router. Advantages: The changes are small, just introduce a plug-in and you're done; insufficient: Dynamic routing cannot be used; 4. Phantomjs handles crawlers Phantomjs is a headless browser based on the webkit kernel, that is, it has no UI interface, that is, it is just a browser, but the human-related operations such as clicking and page turning need to be implemented by programming. Although "PhantomJS announced the termination of development", it has already met the SEO requirements for Vue. This solution is actually a bypass mechanism. The principle is to determine whether the source UA of the access is a crawler access through Nginx configuration. If it is, the crawler request of the search engine is forwarded to a node server, and then PhantomJS is used to parse the complete HTML and return it to the crawler. $ phantomjs spider.js 'www.baidu.com' If you see a bunch of HTML appearing in the command line, congratulations, you have conquered PhantomJS. After starting, or using Postman to add the User-Agent value to Baiduspider in the request header, the effect is the same. Deployment and launch To install node, pm2, phantomjs and nginx related configurations online: upstream spider_server { server localhost:3000; } server { listen 80; server_name example.com; location / { proxy_set_header Host $host:$proxy_port; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; if ($http_user_agent ~* "Baiduspider|twitterbot|facebookexternalhit|rogerbot|linkedinbot|embedly|quora link preview|showyoubot|outbrain|pinterest|slackbot|vkShare|W3C_Validator|bingbot|Sosospider|Sogou Pic Spider|Googlebot|360Spider") { proxy_pass http://spider_server; } } } Advantages: There is no need to change the project code at all, just develop it according to the original SPA. Compared with the development of SSR, the cost is not too much; insufficient: Deployment requires node server support; SummarizeIf you are building a large website, such as a shopping mall, don't hesitate, go directly to SSR server rendering. Of course, there are corresponding pitfalls waiting for you. If the community is more mature and your English is better, all problems can be solved. If it is just a personal blog or a company website, the other three are fine. This concludes this article on the four solutions for Vue single-page SEO. For more relevant Vue single-page SEO content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: HTML tutorial, easy to learn HTML language
>>: Analysis of the use and principle of Docker Swarm cluster management
The tbody element should be used in conjunction wi...
Download the installation package from the offici...
1 Question The company's server uses Apache, ...
Table of contents 1. Control the display and hidi...
Table of contents Early creation method Factory P...
There is a business that queries the 5 most recen...
1. Data backup 1. Use mysqldump command to back u...
First, you need to determine which fields or fiel...
This article example shares the specific code of ...
The drag function is mainly used to allow users t...
When I was working on a project recently, I found...
Docker private image library Docker private image...
This database query statement is one of 50 databa...
Table of contents 1. Build using the official sca...
Table of contents 502 bad gateway error formation...