0

我在写这个:

RewriteRule ^title$  articles.php?&=stop [QSA,L,N,S=15]
RewriteCond %{QUERY_STRING} !stop 
RewriteRule articles.php? http://mysite.com/pages/title [r=301,L,nc]

为了重命名pages/title?id_article=2pages/title

但它不起作用。请问有什么建议吗?先感谢您。

4

1 回答 1

0

如果你想用 PHP 来做,下面是脚本:

<?php
$url = $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];

$url = explode('?', $url);

if(!empty($url[1])) 
{
header("Location: http://".$url[0]);
}
?>
于 2012-07-25T12:01:11.370 回答