Advertisement
kevin25

CodeIgniter htaccess

Jul 17th, 2013
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. RewriteCond %{HTTP_HOST} ^www.example.com.org$ [NC]
  2. RewriteRule ^(.*)$ http://example.com.org/$1 [R=301,L]
  3.  
  4. RewriteCond %{HTTP_HOST} ^www.example.com.com$ [NC]
  5. RewriteRule ^(.*)$ http://example.com.org/$1 [R=301,L]
  6.  
  7. RewriteCond %{HTTP_HOST} ^example.com.com$ [NC]
  8. RewriteRule ^(.*)$ http://example.com.org/$1 [R=301,L]
  9.  
  10.  
  11. RewriteCond $1 ^(boost|api|my\-footprint|my\_footprint|take\-action|take\_action|sign\-up|sign\_up|groups|cron|iphone|messages|share|twitter\_actions|facebook\_apps|sfp-admin|feed)
  12. RewriteCond %{REQUEST_FILENAME} !-f
  13. RewriteCond %{REQUEST_FILENAME} !-d
  14. RewriteRule ^(.+)$ version2/index.php [L]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement