重定向单个查询字符串htaccess

时间:2014-08-03 20:14:40

标签: .htaccess redirect

我试图映射这个字符串:

http://www.example.com/component/content/?view=featured

到这个网址:

http://www.example.com/mynewpage/isreallycool/

我似乎无法找到正确的重写规则来执行此操作。我见过的所有人都是

http://www.example.com/?view=featured

我正在努力使用文件夹名称

非常感谢任何帮助

1 个答案:

答案 0 :(得分:0)

尝试:

RewriteEngine On

RewriteCond %{QUERY_STRING} ^view=featured$ 
RewriteRule ^component/content/?$ /mynewpage/isreallycool/ [L,R]

在文档根目录中的htaccess文件中。