/ Published in: Apache
URL: http://www.learndrupalcms.com/basic-drupal-site-configuration
Expand |
Embed | Plain Text
RewriteCond %{HTTP_HOST} ^your-domain.com$ [NC] RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L] or, if you have 'www' part in your domain name, add this instead: RewriteCond %{HTTP_HOST} ^(www.)?your-domain\.com$ [NC] RewriteRule ^(.+)/$ http://%{HTTP_HOST}/$1 [R=301,L]
You need to login to post a comment.
