Getting started with URL routing with PHP CodeIgniter
问题 I just thought of routing my URLs which is like http://localhost/codeigniter_cup_myth/index.php/adminController/mainAccount and it would be pretty nice if it was http://localhost/codeigniter_cup_myth/Accounts/mainAccount Where should I start when routing URLs in my web application? 回答1: Also, adding something like: RewriteEngine on RewriteCond $1 !^(index\.php|images|css|js|robots\.txt) RewriteRule ^(.*)$ /index.php/$1 [L] to your .htaccess file will get rid of the index.php part 回答2: Routes