Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

www.example.com => example.com in apache configuration (See related posts)

// www.example.com => example.com

RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]

You need to create an account or log in to post comments to this site.


Click here to browse all 5140 code snippets

Related Posts