具有字符串数据的URL永久Apache重定向(问号)

时间:2012-02-07 19:29:57

标签: regex apache mod-rewrite redirect mod-alias

我正在寻找一个Apache重定向,其中源URL中有一个问号。

Redirect permanent /course/view.php?id=68 http://exmaple.com/page.php

我试过逃避问号,但这不起作用。 我在网上看了几页关于使用Rewrite条件的页面,但它对我来说没有多大意义,或者它与我想要完成的有点不同。

1 个答案:

答案 0 :(得分:2)

尝试将以下内容添加到站点根目录中的.htaccess文件中。

RewriteEngine on
RewriteBase / 

RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /course/view\.php\?id=68 [NC]  
RewriteRule ^ http://exmaple.com/page.php [L,R=301]