Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. RewriteEngine on
  2.  
  3. RewriteCond %{REQUEST_FILENAME} !-f
  4. RewriteCond %{REQUEST_FILENAME} !-d
  5.  
  6. RewriteCond %{HTTP_HOST} main.subdomain.com
  7. RewriteRule ^(.*)$ index.php?$1 [L,QSA]
  8.  
  9. RewriteCond %{HTTP_HOST} other.subdomain.com
  10. RewriteRule ^(.*)$ index.php?other=$1 [L,QSA]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement