重定向以index.php结尾的网址以清除网址

时间:2016-08-31 10:33:21

标签: redirect indexing

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

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

当前的ht访问文件如下所示,但所有这一切都是将这些博客网址重定向到主页。

# 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

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

由于

0 个答案:

没有答案