krlaboratories

www to non-www on litespeed

Oct 14th, 2022
553
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.16 KB | Source Code | 0 0
  1. <IfModule mod_rewrite.c>
  2. RewriteEngine On
  3. RewriteBase /
  4. RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
  5. RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
  6. </IfModule>
  7.  
Advertisement
Add Comment
Please, Sign In to add comment