我正在寻找一个Apache重定向,其中源URL中有一个问号。
Redirect permanent /course/view.php?id=68 http://exmaple.com/page.php
我试过逃避问号,但这不起作用。 我在网上看了几页关于使用Rewrite条件的页面,但它对我来说没有多大意义,或者它与我想要完成的有点不同。
答案 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]