Welcome Guest, Not a member yet? Register   Sign In
.htaccess custom URL's
#1

[eluser]alphabase[/eluser]
Hi,

I am using CI with the Facebook SDK, and have decided to drop the index.php in my URL.
Now I'm trying to make custom URL's, for instance for the About-page.

Like this:
http://dev1.example.com/about rewrites to http://dev1.example.com/index.php/page/load/about

Here's my current .htaccess:
Code:
RewriteEngine on
RewriteBase /

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

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

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

Could someone explain to me how to manage this?

EDIT:
Code:
$config['index_page'] = '';
$config['uri_protocol']    = 'AUTO';
$config['enable_query_strings'] = TRUE;
$route['default_controller'] = "topfive";


Messages In This Thread
.htaccess custom URL's - by El Forum - 07-06-2011, 05:00 PM
.htaccess custom URL's - by El Forum - 07-06-2011, 05:17 PM
.htaccess custom URL's - by El Forum - 07-06-2011, 05:21 PM
.htaccess custom URL's - by El Forum - 07-06-2011, 05:23 PM
.htaccess custom URL's - by El Forum - 07-06-2011, 05:56 PM
.htaccess custom URL's - by El Forum - 07-06-2011, 06:14 PM
.htaccess custom URL's - by El Forum - 07-08-2011, 03:40 PM
.htaccess custom URL's - by El Forum - 07-09-2011, 12:26 AM



Theme © iAndrew 2016 - Forum software by © MyBB