这是plugFolder1/
plugFolder2/
plugFolder3/
#Binaries, editor cache, etc...
:
test.php
和<?php echo $_GET['id']; ?>
:
.htaccess
当我尝试RewriteEngine On
RewriteRule ^test/([0-9]+) test.php?id=$1
时,php说:
注意:未定义索引:id
但是当我将.htaccess文件编辑为:
时test/8
并尝试'test-8'代码工作正常!!
为什么?