htaccess重定向与querystring

编程入门 行业动态 更新时间:2024-10-25 00:31:46
本文介绍了htaccess重定向与querystring的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

如何重定向以下网址 test/changefile.php?filename=top-ranked-colleges

How can I redirect the following url test/changefile.php?filename=top-ranked-colleges

test/top-ranked-colleges.php 使用htaccess重定向.

test/top-ranked-colleges.php using htaccess redirection.

任何人都可以帮助我.预先感谢.

Anybody please help me. Thanks in advance.

推荐答案

尝试一下

RewriteCond %{QUERY_STRING} ^filename=(.*)$ RewriteRule .* test/%1.php? [R=301,L]

将test/changefile.php?filename=top-ranked-colleges更改为test/top-ranked-colleges.php

RewriteCond %{REQUEST_URI} ^/(.*).php$ RewriteRule .* test/changefile.php?filename=$1 [L]

将test/top-ranked-colleges.php更改为test/changefile.php?filename=top-ranked-colleges

更多推荐

htaccess重定向与querystring

本文发布于:2023-11-01 23:23:20,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1550705.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:重定向   htaccess   querystring

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!