gpt4 book ai didi

php - 点火器 |从 site_url 或 anchor 函数中删除 index.php

转载 作者:可可西里 更新时间:2023-11-01 13:10:09 30 4
gpt4 key购买 nike

我需要从 site_url() 返回值中删除 index.php我不希望搜索引擎缓存我的 URL 包含 index.php。

我通过设置 .htaccess 文件从 url 中删除了 index.php,但仍然无法正常工作。

例如,当我在我的部分项目中使用 site_url() 时,搜索引擎会缓存像 http://url/index.php/controller 这样的 URL。我从 system/helper 中的 site_url 函数中删除了 index.php,但我认为重定向和 form_open 函数无法正常工作。

最佳答案

写入你的 .htaccess 文件

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]

并在config.php中设置index_page配置

$config['index_page'] = '';

关于php - 点火器 |从 site_url 或 anchor 函数中删除 index.php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29324017/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com