简体   繁体   中英

remove index.php codeigniter in localhost/folder/my_codeigniter/

i have try a few solution from any source, but still cannot remove index.php if my project in other folder like : http://localhost/project/my_codeigniter , all .htaaccess and configuration work fine if my project in http://localhost/my_codeigniter .

hope you can help me, thanks!

You can create a .htaccess file on your project root folder. File content like this;

RewriteEngine on
RewriteCond $1 !^(index\.php|assets)
RewriteRule ^(.*)$ /your-project/index.php/$1 [L]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM