使用 .htaccess 文件重定向链接

使用 .htaccess 文件重定向链接

我有一个网站,上面有很多类似 的链接/click.php_id=602_from=139_to=42_url=1.html。我想使用.htaccess文件设置重定向,以便获得类似 的链接/click.php?id=602&from=139&to=42&url=1。但我该怎么做呢?

答案1

我从来没有使用过 .htaccess(不要忘记允许 .htaccess 实际重写请求),但在 Apache 的配置文件中它或多或少是这样的:

RewriteRule /click.php_id=([0-9]+)_from=([0-9]+)_to=([0-9]+)_url=([0-9]+)\.html$ /click.php?id=$1&from=$2&to=$3&url=$4

你需要检查我的语法,我只是凭记忆输入的

相关内容