gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:07:16 26 4
gpt4 key购买 nike

如何从我的 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/

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