Welcome Guest, Not a member yet? Register   Sign In
urlrewriting htaccess not working properly
#3

(This post was last modified: 03-04-2016, 01:06 PM by mfiaz. Edit Reason: Formatting Issue )

Hi,

Just follow my below steps.

First

Inside application/config/config.php find below line

Step 1.
PHP Code:
$config['index_page'] = 'index.php'



replace it with this one


PHP Code:
 $config['index_page'] = ''



Find below line


PHP Code:
$config['uri_protocol'] = 'AUTO'



Replace it with

PHP Code:
$config['uri_protocol'] = 'REQUEST_URI'



Step 2

Place below code in your .htaccess file

Code:
RewriteBase /your-project-directory-name/
RewriteCond $1 !^(index.php|resources|robots.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]


if your project is inside sub directory then you need to minor change in .htaccess file rules that will be ” RewriteBase / ” to ” RewriteBase /subdir/ ”

You can get full detail from below link on how to remove index.php from URL and write seo friendly URL's in Codeigniter.

http://phpclicks.com/codeigniter-remove-...-from-url/
http://phpclicks.com/codeigniter-seo-friendly-urls/
Reply


Messages In This Thread
RE: urlrewriting htaccess not working properly - by mfiaz - 03-03-2016, 12:20 PM



Theme © iAndrew 2016 - Forum software by © MyBB