Advertisement
Guest User

Untitled

a guest
Apr 15th, 2014
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. Options +Indexes
  2. RewriteEngine On
  3. RewriteBase /
  4.  
  5. RewriteCond %{HTTP_HOST} ^(www.)?testserver.com$
  6. RewriteRule ^(/)?$ ee [L]
  7.  
  8. RewriteCond %{HTTP_HOST} !www.testserver.com$ [NC]
  9. RewriteCond %{HTTP_HOST} ^([a-z0-9-]+).testserver.com [NC]
  10. RewriteCond %{REQUEST_URI} !^index.php/ [NC]
  11. RewriteRule (.*) http://www.testserver.com/Webshops/index.php/store_example/%1/$1 [P,L]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement