Welcome Guest, Not a member yet? Register   Sign In
tinyMCE & file manager/upload
#7

[eluser]the_unforgiven[/eluser]
Apologies my fault here's both htaccess and routes:

Code:
ROUTES:

$route['default_controller'] = 'home';
$route['404_override'] = '';

/*
| -------------------------------------------------------------------------
| CUSTOM ROUTES
| -------------------------------------------------------------------------
*/

$route['pages/(:any)'] = 'home/pages/$1'; // Pages Routes

$route['login'] = 'auth/login'; // Login
$route['logout'] = 'auth/logout'; // Logout
$route['forgot'] = 'auth/forgot_password'; // Forgot Password

Code:
HTACCESS

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /site/

    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

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

<IfModule !mod_rewrite.c>
    ErrorDocument 404 /index.php
</IfModule>


Messages In This Thread
tinyMCE & file manager/upload - by El Forum - 05-10-2012, 09:49 AM
tinyMCE & file manager/upload - by El Forum - 05-10-2012, 10:06 AM
tinyMCE & file manager/upload - by El Forum - 05-10-2012, 10:46 AM
tinyMCE & file manager/upload - by El Forum - 05-10-2012, 11:12 AM
tinyMCE & file manager/upload - by El Forum - 05-10-2012, 12:04 PM
tinyMCE & file manager/upload - by El Forum - 05-10-2012, 12:16 PM
tinyMCE & file manager/upload - by El Forum - 05-10-2012, 12:21 PM
tinyMCE & file manager/upload - by El Forum - 05-10-2012, 01:35 PM
tinyMCE & file manager/upload - by El Forum - 05-10-2012, 01:40 PM



Theme © iAndrew 2016 - Forum software by © MyBB