-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.htaccess
executable file
·27 lines (19 loc) · 1.1 KB
/
.htaccess
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
RewriteEngine On
<IfModule mod_headers.c>
<FilesMatch ".(js|css|xml|gz|html)$">
Header append Vary: Accept-Encoding
</FilesMatch>
</IfModule>
ErrorDocument 404 /404.html
RewriteRule ^timthumb/(.*)/(.*)/(.*)/ libraries/timthumb.php?src=$1&w=$2&h=$3 [QSA]
RewriteRule ^timthumb/(.*)/(.*)/ libraries/timthumb.php?src=$1&w=$2 [QSA]
RewriteRule ^prov/([_0-9a-z-]+)$ ?prov/index.php/$1/ [QSA]
RewriteRule ^prov/([_0-9a-z-]+)/$ ?prov/index.php/$1/ [QSA]
RewriteRule ^([_0-9a-z-]+)/([_0-9a-z-]+)/([_0-9a-zA-Z-&!=]+)/([_0-9a-zA-Z-&!=]+)$ ?index.php/$1/$2/$3/$4/ [QSA]
RewriteRule ^([_0-9a-z-]+)/([_0-9a-z-]+)/([_0-9a-zA-Z-&!=]+)/([_0-9a-zA-Z-&!=]+)/$ ?index.php/$1/$2/$3/$4/ [QSA]
RewriteRule ^([_0-9a-z-]+)/([_0-9a-z-]+)/([_0-9a-zA-Z-&!=]+)$ ?index.php/$1/$2/$3/ [QSA]
RewriteRule ^([_0-9a-z-]+)/([_0-9a-z-]+)/([_0-9a-zA-Z-&!=]+)/$ ?index.php/$1/$2/$3/ [QSA]
RewriteRule ^([_0-9a-z-]+)/([_0-9a-z-]+)$ ?index.php/$1/$2/ [QSA]
RewriteRule ^([_0-9a-z-]+)/([_0-9a-z-]+)/$ ?index.php/$1/$2/ [QSA]
RewriteRule ^([_0-9a-z-]+)$ ?index.php/$1/ [QSA]
RewriteRule ^([_0-9a-z-]+)/$ ?index.php/$1/ [QSA]