0

我想将我的 URL 重定向到该www版本。我可以这样做,但我已经有工作.htaccess代码将浏览器重定向到处理 URL 的 index.php 文件。我有这段代码(我没有写),但我htaccess对解决问题的了解还不够:

RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^(.*)$  /index.php [NC]

我尝试在重定向中简单地使用完整的 URL 路径,但是当我尝试访问页面时会产生 404 错误。我还尝试在此代码下简单地包含更多规则,但没有成功。

4

1 回答 1

1

你的意思是你想让http://example.com/foo/bar重定向到http://www.example.com/foo/bar吗?

如果是这样,这应该可以解决问题,同时保留您的意图

RewriteEngine On

# First redirect non-www hosts (the "L" flag means we won't process
# any more rewrite conditions in this redirect; on the next request,
# the rewrite condition won't match and we'll fall through to your 
# original rule)
RewriteCond %{HTTP_HOST} !^www\.(.*) [NC]
RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [R=301,NC,L]  

# Handle normal requests
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^(.*)$  /index.php [NC]:
于 2012-12-10T01:55:50.987 回答