pollen8/rob.clayburn.me/master/public/.htaccess - Htaccess File

pollen8/rob.clayburn.me/master/public/.htaccess

RequestHeader set X-Prerender-Token "MXLO7cNH4FExwgVOTc70"

# 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 "MXLO7cNH4FExwgVOTc70"
</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 [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))(.*) http://service.prerender.io/http://rob.clayburn.me/$2 [P,L]
    </IfModule>
</IfModule>

<IfModule mod_deflate.c>
  AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript
</IfModule>

<FilesMatch ".(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
  Header set Cache-Control "max-age=604800, public"
</FilesMatch>

On Github License

Files

Download PDF of Htaccess file
DEFLATE, HTTP_USER_AGENT, QUERY_STRING

Comments

Apache