thinkphp URL Redirection

Source: Internet
Author: User

Want to get rid of index.php, because all the addresses are too long with this.

The steps are as follows:

1, modify the Apache configuration file httpd.conf

Open Putty and execute the following command

VIM/ETC/HTTPD/CONF/HTTPD.CONFI//Enter edit mode/mod_rewrite.so//Execute Find command, will load module before the #/allowoverride//Execute Find command, allowoverride None change None to Alesc:wq//Save exit Vim. htaccess//Enter index.php sibling directory, create. htaccess, create and edit files using the Vim command. htaccess is a hidden file, It is not visible to use the LS command under XFTP and Putty. <ifmodule mod_rewrite.c> rewriteengine on Rewritecond%{request_filename}!-d rewritecond%{REQUEST_FILENAME}!-f Rewriterule ^ (. *) $ index.php/$1 [qsa,pt,l]</ifmodule> Paste the above statement, save exit service httpd restart restart Apache

Perform a link without index.php to see if it is displayed correctly, and then proceed to the next step if possible

2, the previous step although the removal of index.php can be correctly accessed, but the use of the U function automatically generated links or with index.php

Need to modify config.php

Vim application/common/conf/config.php add ' Url_model ' =>2 to the configuration parameters,

Test successful, OK

The next time you use URL rules, continue simplifying



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.