我有一个使用Spring MVC + AngularJS的项目.所有数据都是动态的.在这个应用程序中有一些大的位置数据库.
出于搜索引擎优化的目的,需要为每个位置生成一个静态页面并将它们放在SEO友好的URL上(例如/ localhost/path1/path2/here-is-very-friendly-name)
制作它的最佳方法是什么?
我应该单独生成一个页面并将它们放在主应用程序的某个单独的文件夹中(如果是,最好的方法是什么?),或者我可以使用Spring/Angular吗?
(附加信息)
的每个位置的对象包括id
,name
,latitude
,longtitude
,address
,district
,city
,country
.
实际上这是我的Angular/SEO体验.
你必须做出很多改变!
1)#
从网址中删除
app.config(['$locationProvider', function ($locationProvider) { $locationProvider.html5Mode({ enabled: true, requireBase: false }); }]);
2)检查您的MVC路由
直到现在,也许你有一个HomeController用于返回index.cshtml
和启动你的Angular App.从Angular路由中
删除后#
,您必须MapRoute
为所有路由设置.
因为在这种情况下你第一次尝试访问www.site.com/any_route
Angular App这样的路线还没有加载,所以它试图从MVC路由获取页面.但在那之后$routeProvider
履行职责.
3)将MVC变量用于元标记
为了更好地索引并成为爬虫和机器人的朋友,我们必须使用MVC变量来初始化网站元标记.
如果您通过Angular绑定设置页面标题,例如,
只要您想通过社交网络共享页面,就会看到,{{title}}
因为社交网络无法呈现网站.
@ViewBag.title
4)替换元标记的角度绑定
我们的应用程序是SPA,所以在加载Angular之后我们就离开了MVC游乐场.我们必须用MVC变量替换Angular变量.
angular.element('title').remove(); angular.element('meta[name="Description"]').remove(); angular.element('meta[name="Keywords"]').remove(); angular.element('meta[property="og:title"]').remove(); angular.element('meta[property="og:description"]').remove(); var description = angular.element(''); angular.element('head').prepend(description); var keyword = angular.element(''); angular.element('head').prepend(keyword); var titleOg = angular.element(''); angular.element('head').prepend(titleOg); var descriptionOg = angular.element(''); angular.element('head').prepend(descriptionOg); var title = angular.element(''); angular.element('head').prepend(title); $rootScope.$applyAsync(function () { $compile(title)($rootScope); $compile(description)($rootScope); $compile(keyword)($rootScope); $compile(titleOg)($rootScope); $compile(descriptionOg)($rootScope); });
5)JSON-lD
用于动态内容
如果您熟悉SCHEMA.org,最好使用JSON-LD
而不是其他人,因为搜索引擎机器人可以捕获并分析在页面加载后动态插入的s.
您必须检查Schema Dictionary
以找到最接近您的数据结构的类型.
例如,这是我的公司json-ld: