Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 mamp 或 mac os,codeigniter 版本 2.1.3。Codeigniter 文件夹结构是默认的。这是非常基本的。
我想在 url 中隐藏 index.php。你会怎么做?
.htaccess将您的文件更改为:
.htaccess
RewriteEngine on RewriteCond $1 !^(index\.php|images|robots\.txt) RewriteRule ^(.*)$ index.php?$1 [L]
这样,主页和“reg”页面就可以正常加载index.php了。
index.php