summary refs log tree commit diff stats
path: root/.htaccess
diff options
context:
space:
mode:
Diffstat (limited to '.htaccess')
-rwxr-xr-x.htaccess6
1 files changed, 3 insertions, 3 deletions
diff --git a/.htaccess b/.htaccess index 7a6a65c..9b841b1 100755 --- a/.htaccess +++ b/.htaccess
@@ -1,5 +1,8 @@
1RewriteEngine On 1RewriteEngine On
2 2
3RewriteCond %{HTTP_HOST} ^www.fourisland.com [NC]
4RewriteRule ^(.*)$ http://fourisland.com/$1 [R=301,NC,L]
5
3RewriteRule ^blog/$ /index.php?area=blog [QSA,L] 6RewriteRule ^blog/$ /index.php?area=blog [QSA,L]
4RewriteRule ^blog/author/(.+).php /index.php?area=blog&author=$1 [QSA,L] 7RewriteRule ^blog/author/(.+).php /index.php?area=blog&author=$1 [QSA,L]
5RewriteRule ^blog/tag/(.+).php /index.php?area=blog&tag=$1 [QSA,L] 8RewriteRule ^blog/tag/(.+).php /index.php?area=blog&tag=$1 [QSA,L]
@@ -27,6 +30,3 @@ RewriteRule ^projects/ - [L]
27RewriteCond %{REQUEST_FILENAME} !-f 30RewriteCond %{REQUEST_FILENAME} !-f
28RewriteCond %{REQUEST_FILENAME} !-d 31RewriteCond %{REQUEST_FILENAME} !-d
29RewriteRule ^(.+).php /index.php?area=$1 [QSA,L] 32RewriteRule ^(.+).php /index.php?area=$1 [QSA,L]
30
31RewriteCond %{HTTP_HOST} ^www.fourisland.com [NC]
32RewriteRule ^(.*)$ http://fourisland.com/$1 [R=301,NC]