# This folder does not require access over HTTP # (the following directive denies access by default) #Order allow,deny # php-cgi 运行 # # RewriteEngine on # RewriteCond %{REQUEST_FILENAME} !-d # RewriteCond %{REQUEST_FILENAME} !-f # RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1] # # php5apache2_2.dll 方式运行 # #RewriteEngine on #RewriteCond %{REQUEST_FILENAME} !-d #RewriteCond %{REQUEST_FILENAME} !-f #RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] #