CodeIgniter Forums
How to change my url - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: How to change my url (/showthread.php?tid=33362)



How to change my url - El Forum - 08-24-2010

[eluser]oldrock[/eluser]
Hi,

How to change my url without index.php..

thanks in advance


How to change my url - El Forum - 08-24-2010

[eluser]laegnur[/eluser]
Hello

If you mean remove the index.php from the URL, see the User Guide's section URLs.

As it said, you need to create a .htaccess file, in your index.php path.

A comun content for this file, all around this forum, is:

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

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

Then you need to remove the value from the index_page config in config.php:

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