Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. mydomain.com > www.mydomain.com
  2. m.mydomain.com > m.mydomain.com
  3. mydomain.com/page.php > www.mydomain.com/page.php
  4.  
  5. Options All -Indexes
  6. RewriteEngine On # Turn on the rewriting engine
  7. RewriteCond %{HTTP_HOST} !^www. [NC]
  8. RewriteCond %{HTTP_HOST} ^([a-z.]+)$ [NC]
  9. RewriteRule ^/(.*)$ http://www.%1/$1 [R=301,L]
  10. RewriteRule ^download-([A-Za-z0-9_-]+)/?$ download.php?index=$1 [NC,L]
  11. RewriteRule ^videos videos.php [NC,L]
  12. AddType application/octet-stream mp3
  13. RewriteCond %{HTTPS} =on
  14. RewriteRule ^(.*)$ http://www.music.lk/$1 [R=301,L]
  15.  
  16. RewriteCond %{HTTP_HOST} !^www. [NC]
  17. RewriteCond %{HTTP_HOST} ^[^.]+.[^.]+$
  18. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement