.htaccess 230 B

12345678910
  1. AddDefaultCharset UTF-8
  2. <IfModule mod_rewrite.c>
  3. RewriteEngine On
  4. RewriteBase /ubiquity/
  5. RewriteCond %{REQUEST_FILENAME} !-f
  6. RewriteCond %{HTTP_ACCEPT} !(.*images.*)
  7. RewriteRule ^(.*)$ index.php?c=$1 [L,QSA]
  8. </IfModule>