Awesome List Updates on Aug 21, 2015

11 awesome lists updated today.

🏠 Home · 🔍 Search · 🔥 Feed · 📮 Subscribe · ❤️ Sponsor

1. Engineering Blogs

Individuals/Group Contributors / I individuals

2. Awesome Salesforce

Table of Contents / Plugins for Salesforce

Table of Contents / Packages and Libraries supporting salesforce

Salesforce Browser Extensions / Open Source Projects Repositories from Salesforce

3. Tips

Rebases 'feature' to 'master' and merges it in to master

git rebase master feature && git checkout master && git merge -

4. Awesome Jvm

Profilers

5. Awesome Php

Table of Contents / Markup and CSS

6. Awesome Microservices

API Gateways / Edge Services / Scala

Data Formats / Scala

Sites & Organizations / Scala

7. Awesome Elixir

Editors

8. Awesome Db

JAVA

9. Awesome Groovy

Database

10. Awesome Deep Vision

Image and Language / Video Captioning

11. Htaccess

Rewrite and Redirection / Redirect an Entire Site

Redirect an Entire Site

Redirect 301 / http://newsite.com/

This way does it with links intact. That is www.oldsite.com/some/crazy/link.html will become www.newsite.com/some/crazy/link.html. This is extremely helpful when you are just “moving” a site to a new domain. Source

Rewrite and Redirection / Redirect Using RedirectMatch

Redirect Using RedirectMatch

RedirectMatch 301 /subdirectory(.*) http://www.newsite.com/newfolder/$1
RedirectMatch 301 ^/(.*).htm$ /$1.html
RedirectMatch 301 ^/200([0-9])/([^01])(.*)$ /$2$3
RedirectMatch 301 ^/category/(.*)$ /$1
RedirectMatch 301 ^/(.*)/htaccesselite-ultimate-htaccess-article.html(.*) /htaccess/htaccess.html
RedirectMatch 301 ^/(.*).html/1/(.*) /$1.html$2
RedirectMatch 301 ^/manual/(.*)$ http://www.php.net/manual/$1
RedirectMatch 301 ^/dreamweaver/(.*)$ /tools/$1
RedirectMatch 301 ^/z/(.*)$ http://static.askapache.com/$1

Source

Rewrite and Redirection / Alias Paths to Script

Alias Paths to Script

FallbackResource /index.fcgi

This example has an index.fcgi file in some directory, and any requests within that directory that fail to resolve a filename/directory will be sent to the index.fcgi script. It’s good if you want baz.foo/some/cool/path to be handled by baz.foo/index.fcgi (which also supports requests to baz.foo) while maintaining baz.foo/css/style.css and the like. Get access to the original path from the PATH_INFO environment variable, as exposed to your scripting environment.

RewriteEngine On
RewriteRule ^$ index.fcgi/ [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.fcgi/$1 [QSA,L]

This is a less efficient version of the FallbackResource directive (because using mod_rewrite is more complex than just handling the FallbackResource directive), but it’s also more flexible.