2016-08-20 54 views
1

我已預渲染工作並運行除根(家)頁面以外的所有頁面。預渲染與Anguar UI路由器不呈現根頁面動態內容

例如:

http://www.example.com/?_escaped_fragment_= 

不呈現動態數據。所有其他網頁就像

http://www.example.com/contact?_escaped_fragment_= 

這就像角UI路由器不知道是什麼狀態,它是在這麼離開視圖空白的根源。但是沒有escaped_fragment的根頁面http://www.example.com會正確顯示它。

我已經在頭文件中添加了片段元標記,並且在角度配置中將html5添加爲了true。


的index.html:

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

app.js:

$locationProvider.html5Mode(true); 
$locationProvider.hashPrefix('!'); 

的.htaccess:

# Change YOUR_TOKEN to your prerender token and uncomment that line if you want to cache urls and view crawl stats 
# Change http://example.com (at the end of the last RewriteRule) to your website url 

<IfModule mod_headers.c> 
    #RequestHeader set X-Prerender-Token "MY TOKEN" 
</IfModule> 

<IfModule mod_rewrite.c> 
    RewriteEngine On 

    <IfModule mod_proxy_http.c> 
     RewriteCond %{HTTP_USER_AGENT} baiduspider|facebookexternalhit|twitterbot|rogerbot|linkedinbot|embedly|quora\ link\ preview|showyoubot|outbrain|pinterest|slackbot|vkShare|W3C_Validator [NC,OR] 
     RewriteCond %{QUERY_STRING} _escaped_fragment_ 

     # Only proxy the request to Prerender if it's a request for HTML 
     RewriteRule ^(?!.*?(\.js|\.css|\.xml|\.less|\.png|\.jpg|\.jpeg|\.gif|\.pdf|\.doc|\.txt|\.ico|\.rss|\.zip|\.mp3|\.rar|\.exe|\.wmv|\.doc|\.avi|\.ppt|\.mpg|\.mpeg|\.tif|\.wav|\.mov|\.psd|\.ai|\.xls|\.mp4|\.m4a|\.swf|\.dat|\.dmg|\.iso|\.flv|\.m4v|\.torrent|\.ttf|\.woff))(.*) http://service.prerender.io/http://www.example.com$2 [P,L] 
    </IfModule> 

</IfModule> 


# BEGIN WordPress 
    <IfModule mod_rewrite.c> 
    RewriteEngine On 
    RewriteBase/
    RewriteRule ^index\.php$ - [L] 
    RewriteCond %{REQUEST_FILENAME} !-f 
    RewriteCond %{REQUEST_FILENAME} !-d 
    RewriteRule . /index.php [L] 
    </IfModule> 
# END WordPress 

回答

2

你的.htaccess可能的URL設置爲/索引.php爲主頁。如果是這樣,您可以將您的重寫規則更改爲:

RewriteRule ^(?!.*?(\.js|\.css|\.xml|\.less|\.png|\.jpg|\.jpeg|\.gif|\.pdf|\.doc|\.txt|\.ico|\.rss|\.zip|\.mp3|\.rar|\.exe|\.wmv|\.doc|\.avi|\.ppt|\.mpg|\.mpeg|\.tif|\.wav|\.mov|\.psd|\.ai|\.xls|\.mp4|\.m4a|\.swf|\.dat|\.dmg|\.iso|\.flv|\.m4v|\.torrent|\.ttf|\.woff))(index\.php)?(.*) http://service.prerender.io/http://www.example.com$3 [P,L] 

我添加了(index.php)?如果發現並將$ 2更改爲$ 3,則將其捕獲。不要忘記將http://www.example.com更改爲您的域名。