how to modify .htaccess file to always redirect to www

后端 未结 4 1856
灰色年华
灰色年华 2020-12-09 05:05

I would like to modify my .htaccess file so that when someone comes into my site without typing www the site always redirects them to the www version. For example, if my ur

4条回答
  •  鱼传尺愫
    2020-12-09 05:33

    There are two methods available

    1) use mod_alias apache module

    Redirect permanent /something http://yourwebsite.com/something

    2) Add the following entry in your .htaccess / http.conf / yourwebsite.conf in the webserver configuarion directory

    RewriteEngine on RewriteCond %{HTTP_HOST} ^yourwebsite.com RewriteRule ^(.*)$ http://www.yourwebsite.com$1 [R=permanent,L]

提交回复
热议问题