aboutsummaryrefslogtreecommitdiff
path: root/.htaccess
blob: 27fd434d7a1c5db2688efb5f7f0a12666925a1c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#####################################
# the first part of this file is used if you configure your scuttle for nice urls
# (see $cleanurls in config.inc.php)
#####################################


# Rewrite clean URLs onto real files
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^([^/.]+)/?(.*)$ $1.php/$2 [QSA,L]
</IfModule>


#####################################
# This second part is used to speed-up the application
#####################################