.htaccess 193 B

12345678
  1. <IfModule mod_rewrite.c>
  2. RewriteEngine On
  3. RewriteCond %{REQUEST_FILENAME} !-d
  4. RewriteCond %{REQUEST_FILENAME} !-f
  5. RewriteRule ^(.*)$ index.php [E=PATH_INFO:$1,QSA,PT,L]
  6. </IfModule>