请教一个.htaccess文件解析的问题
我的显示文件在products文件夹的的showdetail.php?id=**
我想把产品显示成以下的规则;
/products/new-products/index.html
/products/outdoor-led/index.html
/products/indoor-led/index.html
.....
我的.htaccess文件如下;
RewriteEngine on
rewritebase /products/
rewriterule ^(\w*)\/index.html$ showproducts.php?id=$1
怎么显示找不到文件呢?