我的.htaccess看起來是這樣的:htaccess的重定向問題
RewriteEngine on
RewriteCond %{REQUEST_URI} !(\.gif)|(\.jpg)|(\.png)|(\.css)|(\.js)|(\.php)|(\.swf)|(\.xpi)|(\.ico)|(\.src)$
RewriteCond %{REQUEST_URI} ^(.*)$
#RewriteCond %{REQUEST_FILENAME} ! -f
RewriteRule (.*)$ view.php?picid=$1 [L]
問題是,當我訪問www.example.com
,它送我去view.php
。我的根目錄中有一個index.php
文件。我如何讓.htaccess忽略索引文件?
works great , 謝謝。 – mrpatg 2009-08-08 06:23:45