Welcome Guest, Not a member yet? Register   Sign In
Blaze 0.91 Released
#6

[eluser]xZenon[/eluser]
Try to use my htaccess.
Also try to clear the browser cache.

Code:
RewriteEngine On
RewriteBase /

# Must do this before a trailing slash gets put on it
RewriteRule ^static/frontend/([a-zA-Z_-]*)/(.*)$ application/views/themes/$1/static/$2 [L]
RewriteRule ^static/admin/([a-zA-Z_-]*)/(.*)$ application/views/themes_admin/$1/static/$2 [L]

# Add Trailing Slash (Force it!) - It looks cool  RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_URI} !(.*)/$
#RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1/ [R=301,L]

# Admin ‘dashboard’
RewriteRule ^admin$ index.php/admin [L]
RewriteRule ^admin/$ index.php/admin/ [L]

# Admin functions within Admin module and controller
RewriteRule ^admin/(navigation|users|settings|login|logout)$ index.php/admin/$1 [L]
RewriteRule ^admin/(navigation|users|settings|login|logout)/(.*)$ index.php/admin/$1/$2 [L]
RewriteRule ^admin/nav_(.*)$ index.php/admin/nav_$1 [L]

# All others, push to the module in question
RewriteRule ^admin/([a-zA-Z]*)$ $1/admin [L]
RewriteRule ^admin/([a-zA-Z]*)/(.*)$ $1/admin/$2 [L]

# Any request were the file or directory doesn’t exist…
# Push to CI

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]


Messages In This Thread
Blaze 0.91 Released - by El Forum - 03-25-2008, 12:29 AM
Blaze 0.91 Released - by El Forum - 05-27-2008, 02:04 AM
Blaze 0.91 Released - by El Forum - 05-27-2008, 06:43 AM
Blaze 0.91 Released - by El Forum - 05-27-2008, 01:08 PM
Blaze 0.91 Released - by El Forum - 05-27-2008, 02:34 PM
Blaze 0.91 Released - by El Forum - 05-27-2008, 02:41 PM
Blaze 0.91 Released - by El Forum - 05-27-2008, 03:14 PM
Blaze 0.91 Released - by El Forum - 05-27-2008, 03:21 PM
Blaze 0.91 Released - by El Forum - 05-29-2008, 02:04 AM



Theme © iAndrew 2016 - Forum software by © MyBB