.htaccess 263 B

123456789101112
  1. <IfModule mod_rewrite.c>
  2. RewriteEngine on
  3. RewriteCond %{REQUEST_FILENAME} !-d
  4. RewriteCond %{REQUEST_FILENAME} !-f
  5. # mod_fcgid & php-cgi
  6. RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
  7. # php5apache2_2.dll
  8. #RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
  9. </IfModule>