我在openshift免费层有osclass网站。但对于openshift只有www版本的域工作不root.My网站htaccess文件有跟随内容。我添加到.htaccess文件,以便它自动将用户从http; // mydomain.com重定向到www.mydomain.com
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
答案 0 :(得分:1)
在RewriteBase /
行:
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [NE,R=301,L]