作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
如何从我的 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/
我是一名优秀的程序员,十分优秀!