php - 如何从 CodeIgniter 中的 URL 中删除 'index.php'?

标签 php codeigniter

如何从我的 URL 中删除 index.php在 CodeIgniter 中?

我从我的配置文件中删除了 index.php,并且我在 Apache (2.2.11) 和我的 .htaccess 中运行了我的 rewrite_module文件是:

RewriteEngine on

RewriteCond $1 !^(index\.php|images|captcha|css|js|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]

现在,每当我单击任何链接时,它都会显示找不到该 URL。有什么问题?

最佳答案

在您的 .htaccess 中试试这个文件:评论应该有助于为您调整它......

这在几个 CodeIgniter 网站安装中对我来说非常有效。此外,如果未安装 mod_rewrite,它会将您发送到 404 页面(或者您可以更改它以适合您的目的)。

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    #'system' can be replaced if you have renamed your system folder.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ index.php/$1 [L]

    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d

    #This last condition enables access to the images and css folders, and the robots.txt file
    RewriteCond $1 !^(index\.php|(.*)\.swf|images|robots\.txt|css|docs|cache)
    RewriteRule ^(.*)$ index.php/$1 [L]
    </IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    ErrorDocument 404 /application/errors/404.php
</IfModule>

检查您的虚拟主机文件并查看您是否设置了这些项目——这些可能允许您的 .htaccess 文件重写 URL正确:

Options FollowSymLinks
AllowOverride All
Order deny,allow
Deny from all

关于php - 如何从 CodeIgniter 中的 URL 中删除 'index.php'?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2192136/

相关文章:

php - 如何导入用 php 导出为文本的多个 mysql 查询?

codeigniter group_by 只返回第一行

php - 带有嵌入式图像的 IMAP PHP 未在本地主机上显示 Codeigniter

php - CodeIgniter 应用程序在移至生产环境时显示 404

php - 如何在Cell中使用HTML Helper或调用initialize()?

php - 如何将字符串值分配给 php 数组的索引?

php - 如果成员不再属于组,则从数据库中删除行

php - 多维数组差异php

php - 尝试在 codeigniter 中获取 Assets CSS 时出现 404 错误?

php - 如何使用 codeigniter uri 格式创建搜索表单?