由Google

时间:2015-09-23 14:10:41

标签: angularjs apache .htaccess mod-rewrite google-index

我觉得我已尝试过每一个选项,但没有任何成功。首先让我列出我尝试的选项:

在Apache上使用prerender:

我尝试使用以下步骤:

在Angular中:

$locationProvider.html5Mode(true);

在HTML中,添加此元标题:

<head>
    <meta name="fragment" content="!">
</head>

配置Apache:

  RewriteEngine On
# If requested resource exists as a file or directory
  # (REQUEST_FILENAME is only relative in virtualhost context, so not usable)
    RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR]
    RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d
    # Go to it as is
    RewriteRule ^ - [L]

  # If non existent
    # If path ends with / and is not just a single /, redirect to without the trailing /
      RewriteCond %{REQUEST_URI} ^.*/$
      RewriteCond %{REQUEST_URI} !^/$
      RewriteRule ^(.*)/$ $1 [R,QSA,L]      

  # Handle Prerender.io
    RequestHeader set X-Prerender-Token "YOUR_TOKEN"

    RewriteCond %{HTTP_USER_AGENT} baiduspider|facebookexternalhit|twitterbot|rogerbot|linkedinbot|embedly|quora\ link\ preview|showyoubot|outbrain|pinterest [NC,OR]
    RewriteCond %{QUERY_STRING} _escaped_fragment_

    # Proxy the request
    RewriteRule ^(.*)$ http://service.prerender.io/http://%{HTTP_HOST}$1 [P,L]

  # If non existent
    # Accept everything on index.html
    RewriteRule ^ /index.html

这根本不起作用:Google无法阅读我的子页面。

使用Node / Phantomjs呈现页面

    var express = require('express');
var app = module.exports = express();
var phantom = require('node-phantom');
app.use('/', function (req, res) {
    if (typeof(req.query._escaped_fragment_) !== "undefined") {
        phantom.create(function (err, ph) {
            return ph.createPage(function (err, page) {
                return page.open("https://system.dk/#!" + req.query._esca$
                    return page.evaluate((function () {
                        return document.getElementsByTagName('html')[0].innerHT$
                    }), function (err, result) {
                        res.send(result);
                        return ph.exit();
                    });
                });
            });
        });
    } else
        res.render('index');
});

app.listen(3500);
console.log('Magic happens on port ' + 3500);

在这里,我创建了这个站点,然后在我的Apache配置中添加了一个代理,以便所有请求都指向我的域端口3500

这不起作用,因为它无法呈现索引,当我最终发送它时,JavaScript无法呈现。

关注自定义快照指南

然后我遵循了这个指南:

http://www.yearofmoo.com/2012/11/angularjs-and-seo.html

然而,这要求我为所有不是我正在寻找的东西制作自定义快照,并且很难维护。另外,make-snapshot在我的服务器上不起作用。

1 个答案:

答案 0 :(得分:2)

理论上,您不必将您的网页预呈现给Google抓取工具。他们现在解析javascript。 http://googlewebmastercentral.blogspot.ca/2014/05/understanding-web-pages-better.html

谷歌解析我的angularJS网站就好了。 https://www.google.nl/search?q=site%3Atest.coachgezocht.nu

使用$ locationProvider.html5Mode(true);和

    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} !index
    RewriteRule (.*) index.html [L]