|
ci用的rewrite去除index.php
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /my-test-project/ci/index.php/$1 [L]
例如各別輸入兩種網址
1. localhost/demo/
2. localhost/demo/index,php/news/2
我對 RewriteCond $1 !^(index\.php|images|robots\.txt) 裡頭的 $1 是指何者搞不懂
請教有工具或命令可以對$1 除錯嗎?
感謝 |
|