例如:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php)
RewriteRule ^(.*)$ /index.php/$1 [L]
我无法理解 RewriteCond 中 $1 的含义。
如果 $1 指定给 RewriteRule 的 (.*),那么我们可以在 RewriteCond 中这样使用吗?