Welcome Guest, Not a member yet? Register   Sign In
My first completed CodeIgniter web application - listing service for real estate investors
#3

[eluser]taewoo[/eluser]
.htaccess
Code:
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

    ErrorDocument 404 /index.php
</IfModule>

in system/application/config/php


Code:
$config['index_page'] = "";


Messages In This Thread
My first completed CodeIgniter web application - listing service for real estate investors - by El Forum - 04-02-2008, 07:59 PM



Theme © iAndrew 2016 - Forum software by © MyBB