使用 rewrite_mod 将 index.php 重定向到 root,并将 www 重定向到非 www [重复]

Posted

技术标签:

【中文标题】使用 rewrite_mod 将 index.php 重定向到 root,并将 www 重定向到非 www [重复]【英文标题】:Redirect index.php to root, and www to non www with rewrite_mod [duplicate] 【发布时间】:2013-05-18 01:45:17 【问题描述】:

有人知道我如何在下面的 .htaccess 中重定向此规则吗?

http://www.domain.com/index.php to http://domain.com

http://www.domain.com to http://domain.com 

许多坦克

【问题讨论】:

没有找到 domain.com/index.php 到 domain.com...只有 www 到非 www,我希望这两个都在一个规则中...你能帮我解决那个 Cheesemacfly 吗?坦克 ***.com/questions/4365129/… 【参考方案1】:

由于我猜测 index.php 是您转到文档根目录时得到的服务,因此您需要明确检查 /index.php请求的内容,而不是URI,一旦 URL 文件映射管道完成它的工作,它将是它。

RewriteEngine On
RewriteCond %THE_REQUEST ^[A-Z]3,9\ /index\.php
RewriteRule ^index\.php$ / [L,R=301]

然后是www到非www:

RewriteCond %HTTP_HOST ^www\.domain\.com$ [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [L,R=301]

【讨论】:

为什么3,9后面有空格\ / @ShreenivasChikati 因为这就是请求的第一行,例如:GET /index.php HTTP/1.1

以上是关于使用 rewrite_mod 将 index.php 重定向到 root,并将 www 重定向到非 www [重复]的主要内容,如果未能解决你的问题,请参考以下文章

Tomcat删除index.php Codeigniter

xampp下载和使用

thinkphp隐藏index.php/home,并允许访问其他模块

将图像添加到 Joomla JToolBar 自定义链接按钮

拒绝直接访问除 index.php 之外的所有 .php 文件

加载位于博客文件夹外的 index.php 内容以发布单页