ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

CodeIgniter:删除WAMP上URL中的“index.php”

2019-09-03 03:30:52  阅读:223  来源: 互联网

标签:wampserver php codeigniter mod-rewrite wamp


在CodeIgniter中,我想在我的localhost(WAMP)上删除URL中的“index.php”.例如,http://localhost.com/ci/index.php/controller/functionhttp://localhost.com/ci/controller/function

我改变了

$config['index_page'] = 'index.php'; to $config['index_page'] = '';

我的.htaccess文件(位于根目录中,index.php所在的位置)如下:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /igniter

#Removes access to the system folder by users.
#Additionally this will allow you to create a System.php controller,
#previously this would not have been possible.
#‘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
#Submitted by Michael Radlmaier (mradlmaier)
RewriteCond $1 !^(index\.php|images|robots\.txt|css)
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.
# Submitted by: ElliotHaughin

ErrorDocument 404 /index.php
</IfModule>

我也进入了httpd.conf文件并取消注释了LoadModule rewrite_module modules / mod_rewrite.so

最后,httpd.conf文件中的目录部分如下所示.

<Directory />
    Options FollowSymLinks
    AllowOverride All
    Order deny,allow
    Deny from all
</Directory>

我仍然无法让它工作..该页面显示:“在此服务器上找不到请求的URL / db / site.”

任何帮助将不胜感激,谢谢!

解决方法:

尝试:

RewriteBase /

要更改目录

标签:wampserver,php,codeigniter,mod-rewrite,wamp
来源: https://codeday.me/bug/20190903/1795165.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有