将所有非 www 重定向到 www。对于 Cakephp 网站
大家好,我在将非 www 页面重定向到 www 时遇到一些问题。我的 cakephp 网站的页面。
我已经尝试过
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]
,但似乎不起作用。
我的 cakephp 应用程序位于子文件夹中。例如。 www.domain.com/my
。
我已将上述代码添加到根文件夹,www.domain.com/
有什么建议吗?谢谢?
*更新
我的 .htaccess 文件,
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
</IfModule>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
RewriteRule ^.*$ http://www.domain.com%{REQUEST_URI} [R=301,L]
我在 URL 中插入了一个额外的 webroot/index.php?url=
。 ,我得到的是 www.domain.com/my/webroot/index.php?url=apple
,而不是 www.domain.com/my/apple
感谢大家 再次。
Hi allm i'm having some issues in redirecting the non www pages to the www. pages for my cakephp site.
I've tried
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]
but it doesn't seem to work.
My cakephp app resides in a subfolder. eg. www.domain.com/my
.
i've added the above code to the root folder, www.domain.com/
any suggestions? thanks?
*update
This my .htaccess file
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
</IfModule>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
RewriteRule ^.*$ http://www.domain.com%{REQUEST_URI} [R=301,L]
i'm getting an extra webroot/index.php?url=
inserted into the url. Instead of www.domain.com/my/apple
, i'm getting www.domain.com/my/webroot/index.php?url=apple
thanks to all once again.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你的代码不太正确。见下文。
Your code is not quite right. See below.
如果域名是 .co.uk
if domain is .co.uk
重写引擎开启
RewriteEngine On
我已经尝试过下面的代码,它对我有用:
I have tried the below code below and it worked for me: