#
# xenFramework (http://xenframework.com/)
#
# This file is part of the xenframework package.
#
# (c) Ismael Trascastro <itrascastro@xenframework.com>
#
# @link http://github.com/xenframework for the canonical source repository
# @copyright Copyright (c) xenFramework. (http://xenframework.com)
# @license MIT License - http://en.wikipedia.org/wiki/MIT_License
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
#
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
</IfModule>