root/trunk/htaccess_default

Revision 2080, 1.3 KB (checked in by nick_ramsay, 22 months ago)

[TRUNK] Hotaru 1.4

Line 
1#############################
2##### EDIT THIS SECTION #####
3#############################
4
5Options +Indexes +FollowSymlinks
6RewriteEngine on
7
8## Change to /folder if Hotaru is in a subfolder
9RewriteBase /
10
11## Redirect www.example.com to example.com. Add ## if you don't need the redirect.
12RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
13RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
14
15################################################
16##### DON'T EDIT ANYTHING BELOW THIS POINT #####
17################################################
18
19##### CORE ADMIN #####
20RewriteRule ^admin/?$ admin_index.php [L]
21RewriteRule ^admin/([a-zA-Z0-9_-]+)/?$ admin_index.php?page=$1 [L]
22RewriteRule ^admin/plugin_settings/plugin/([a-zA-Z0-9_-]+)/?$ admin_index.php?page=plugin_settings&plugin=$1 [L]
23
24##### GENERIC RULES #####
25RewriteRule \.(css|php|png|jpg|gif|ico|js|inc|txt|gz|xml|html)$ - [NC,L]
26RewriteRule ^([^/]*)/?$ index.php?page=$1 [L]
27RewriteRule ^([^/]*)/([^/]*)/?$ index.php?$1=$2 [L]
28RewriteRule ^([^/]*)/([^/]*)/([^/]*)/?$ index.php?page=$1&$2=$3 [L]
29RewriteRule ^([^/]*)/([^/]*)/([^/]*)/([^/]*)/?$ index.php?$1=$2&$3=$4 [L]
30RewriteRule ^([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/?$ index.php?page=$1&$2=$3&$4=$5 [L]
31RewriteRule ^([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/([^/]*)/?$ index.php?$1=$2&$3=$4&$5=$6 [L]
Note: See TracBrowser for help on using the browser.