.htaccess 234 B

12345678
  1. <IfModule mod_rewrite.c>
  2. RewriteEngine on
  3. RewriteBase /
  4. RewriteCond %{REQUEST_FILENAME} !-d
  5. RewriteCond %{REQUEST_FILENAME} !-f
  6. RewriteCond $1 !^(static|uploads)
  7. RewriteRule ^(.*)$ index.php?s=/$1 [QSA,PT,L]
  8. </IfModule>