CI to index. php

Source: Internet
Author: User
Tags codeigniter
CI goes to index. the default rewriteurl of phpCI is similar to this. for example, if your CI root directory is under/CodeIgniter/, your second-level url is similar to http: // localhost/CodeIgniter/index. php/welcome. Not very nice. how can I remove index. php from it? CI to index. php

The default rewrite url of CI is similar to this. for example, if your CI root directory is under/CodeIgniter/, your second-level url is similar to http: // localhost/CodeIgniter/index. php/welcome. Not very nice. how can I remove index. php from it?

1. open the apache configuration file, conf/httpd. conf:

LoadModule rewrite_module modules/mod_rewrite.so, remove the # before the row.

Search for AllowOverride None (there are multiple configuration files), view the comments, and change the row information of related. htaccess to AllowOverride All.

2. under the root directory of CI, that is, in index. php, system directory at the same level, create. htaccess, directly creating the file name will not succeed, you can first create a notepad file, save it as a file with this name. The content is as follows (this is also introduced in the CI manual ):

1 RewriteEngine on?
2 RewriteCond $1 !^(index\.php|images|robots\.txt)?
3 RewriteRule ^(.*)$ /index.php/$1 [L]

If the file is not in the root directory of www, for example, my file is http://www.nowamagic.net/codeigniter/, and the third line is rewriterule ^ (. *) $/CodeIgniter/index. php/$1 [L]

In addition, my index. php Directory has the js folder and css folder under the same level, which need to be filtered out, and the second line needs to be rewritten as: RewriteCond $1! ^ (Index \. php | images | js | css | robots \. txt)

3. set the configuration file (system/application/config. $ config ['index _ page'] = "index. php "; set $ config ['index _ page'] = "";.

View sourceprint?
01 /*
02 |--------------------------------------
03 | Index File
04 |--------------------------------------
05 |
06 | Typically this will be your index.php file, unless you've renamed it to
07 | something else. If you are using mod_rewrite to remove the page set this
08 | variable so that it is blank.
09 |
10 */
11 $config['index_page'] = '';

OK. Remember to restart apache.

That's easy. have a good experience with CI ~

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.