如何使用mod_rewrite将example.com重定向到www.example.com?

Ben*_*man 2 apache .htaccess mod-rewrite

我需要重定向没有"www"的任何网址.到"www."的网址 为了更好的搜索引擎优化.我读到mod_rewrite和.htaccess文件可以实现这一点,但我不知道使用正确的代码.有人可以帮忙吗?

lem*_*nad 7

在根文件夹中创建一个名为.htaccess的文件(例如,index.html或index.php所在的文件夹).将以下内容放入其中:

RewriteEngine   on
RewriteCond %{HTTP_HOST} ^yourdomain\.com [NC]
RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [L,R=301]
Run Code Online (Sandbox Code Playgroud)