htaccess重定向urls结束index.php

时间:2016-09-09 08:58:03

标签: php redirect mod-rewrite

我有一个奇怪的设置客户端。在分析中,我们看到网址获取技术上不存在的网页浏览量。

示例:

website.org/questions/search/blog/2016/07/blog-post-name/index.php

当前的htaccess文件看起来像这样,但所有这一切都是将这些博客网址重定向到主页。

# Redirect index.php Requests
# ------------------------------
RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteCond %{THE_REQUEST} !/system/.*
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,L]

是否有htaccess代码为所有网址创建重定向:

示例:

website.org/questions/search/blog/2016/07/blog-post-name/index.php

 website.org/questions/search/blog/2016/07/blog-post-name

由于

0 个答案:

没有答案