Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <base href="[[!++site_url]]" />
  2.  
  3. RewriteCond %{REQUEST_FILENAME} !-f
  4. RewriteCond %{REQUEST_FILENAME} !-d
  5. RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
  6.  
  7. RewriteCond %{HTTP_HOST} .
  8. RewriteCond %{HTTP_HOST} !^example-domain-please-change.com [NC]
  9. RewriteRule (.*) http://example-domain-please-change.com/$1 [R=301,L]
  10.  
  11. RewriteCond %{HTTP_HOST} .
  12. RewriteCond %{HTTP_HOST} !^www.example-domain-please-change.com [NC]
  13. RewriteRule (.*) http://www.example-domain-please-change.com/$1 [R=301,L]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement