从.htaccess rewriterule

时间:2016-04-23 13:51:24

标签: php apache .htaccess mod-rewrite

我收到此错误

在此服务器上找不到请求的URL / redirect-sdksm。

此外,尝试使用ErrorDocument处理请求时遇到404 Not Found错误。

我的.htaccess代码是

    Options +FollowSymLinks
    RewriteEngine On
    RewriteRule ^redirect-(.*) test2.php?id=$1 [QSA,L]

我的test2.php代码是

  <?php
  $vl=$_GET['id'];
  echo $vl;
  ?>

0 个答案:

没有答案