/ Published in: Apache
This snippet checks if modrewrite is enabled and redirects example.com/someuri to www.example.com/some_uri
Expand |
Embed | Plain Text
<IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTP_HOST} ^example\.com RewriteRule ^(.*)$ http://www.example.com$1 [R=permanent,L] </IfModule>
You need to login to post a comment.
