Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 4th, 2012  |  syntax: None  |  size: 0.60 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. htaccess non www to www not working, other redirects working
  2. Options +FollowSymLinks
  3. RewriteEngine On
  4. RewriteBase /
  5.  
  6. RewriteCond %{HTTP_HOST} !^www.mysite.com$ [NC]
  7. RewriteRule ^(.*)$ http://www.mysite.com/$1 [R=301,L]
  8.  
  9. # Redirect old URLs to new ones
  10. RewriteRule ^(about)$ about-us [L,R=301]
  11. RewriteRule ^(contact-us)$ contact [L,R=301]
  12.  
  13. #Place index.php after hostname
  14. RewriteCond %{REQUEST_FILENAME} !-f
  15. RewriteCond %{REQUEST_FILENAME} !-d
  16. RewriteCond $2 !.(gif|jpe?g|png|css|pdf|swf|fla|ppt|php|js)$ [NC]
  17. RewriteCond $1 !.(gif|jpe?g|png|css|pdf|swf|fla|ppt|php|js)$ [NC]
  18.  
  19. RewriteRule ^(.*)$ index.php/$1 [L]