duanfeiqu1989 2014-10-17 09:34 采纳率: 100%
浏览 55

Htaccess重定向从domain.com/folder1/xxxx到www.domain.com/folder1/xxxx等

I searched all along the web but can't find the code.

I need to redirect all requests that goe to domain.com/folder1 and its sub-folders to www.domain.com/folder1/.

When redirected, it should keep the complete URL and just add the www.

Is this possible?

Thanks!

  • 写回答

1条回答 默认 最新

  • dsasd12314 2014-10-17 09:40
    关注
    RewriteEngine On
    
    RewriteCond %{HTTP_HOST} !^www\.
    
    RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
    
    评论

报告相同问题?