Welcome Guest, Not a member yet? Register   Sign In
Removing the index.php file - 11.09.2018
#3

Create a .htaccess file at the root of the site and copy the code if below :

Code:
# ######################################################################
# # CodeIgniter                                                        #
# ######################################################################

# ----------------------------------------------------------------------
# | Setting up environment                                             |
# ----------------------------------------------------------------------
# development
# testing
# production

SetEnv CI_ENV development

# ######################################################################
# # REWRITES                                                           #
# ######################################################################

# ----------------------------------------------------------------------
# | Rewrite engine                                                     |
# ----------------------------------------------------------------------

<IfModule mod_rewrite.c>
    RewriteEngine On

    RewriteCond $1 !^(index\.php|robots\.txt|sitemap\.xml)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
Reply


Messages In This Thread
RE: Removing the index.php file - 11.09.2018 - by ecampait - 09-11-2018, 02:47 PM



Theme © iAndrew 2016 - Forum software by © MyBB