作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我需要从 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/
我正在使用 Codeigniter,问题是我的 Controller 中有重复很多的特定代码,我需要将这段代码放在一个地方,然后在 Controller 中调用它。 例子: public funct
我真的很想知道我该怎么做,我有 3 个页面具有指向 1 个页面的相同链接,现在我想要做的是拥有 1 个足够智能的按钮来获取使用了 3 个页面中的哪一个转到该页面并使用它作为返回上一页的链接。 如果有人
我需要从 site_url() 返回值中删除 index.php我不希望搜索引擎缓存我的 URL 包含 index.php。 我通过设置 .htaccess 文件从 url 中删除了 index.ph
我是一名优秀的程序员,十分优秀!