Options  FollowSymLinks

RewriteEngine On
# Set the default handler.
DirectoryIndex index.php

#
#  mod_rewrite in use

# Various rewrite rules.
<IfModule mod_rewrite.c>
  RewriteEngine on

  RewriteBase /sitio-anterior/

  # Rewrite current-style URLs of the form 'index.php?x'.
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule ^(.*)$ index.php?$1 [L,QSA]
</IfModule>

