0

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

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

我试过转义问号,但这不起作用。我在网上阅读了几页关于使用重写条件的内容,但它对我来说并不是很有意义,或者它与我想要完成的有点不同。

4

1 回答 1

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]   
于 2012-02-07T20:26:49.620 回答