我收到此错误
在此服务器上找不到请求的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;
?>