Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/codeigniter/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在Codeigniter中配置routes.php_Php_Codeigniter_Routes_Uri - Fatal编程技术网

在Codeigniter中配置routes.php

在Codeigniter中配置routes.php,php,codeigniter,routes,uri,Php,Codeigniter,Routes,Uri,我刚开始一个新项目,我被Codeigniter的URI配置卡住了 我正在使用xampp,到目前为止,我有一个文件夹,其中包含我的站点,路径如下: c:/xampp/htdocs/new_admin/site/application c:/xampp/htdocs/new_admin/site/system 正如在CooGielIt手册中所说的,我添加到CONTH.PHP的基础URL中,我认为这是: $config['base_url'] = 'http://localhost/new_admi

我刚开始一个新项目,我被Codeigniter的URI配置卡住了

我正在使用xampp,到目前为止,我有一个文件夹,其中包含我的站点,路径如下:

c:/xampp/htdocs/new_admin/site/application
c:/xampp/htdocs/new_admin/site/system

正如在CooGielIt手册中所说的,我添加到CONTH.PHP的基础URL中,我认为这是:

$config['base_url'] = 'http://localhost/new_admin/';
我将索引页面留白:

$config['index_page'] = '';
我希望我的URI看起来像:

http://localhost/new_admin/[controller]/[method] 
例如:

http://localhost/new_admin/admin/index
因此,在routes.php文件中,我做了以下操作:

$route['default_controller'] = 'admin';
$route['(:any)'] = 'admin/index';
但它甚至没有显示方法索引的结果。错误是404

由于我在文档中找不到解决方案,我想我遗漏了一些东西

我该怎么做才能使这项工作如我所愿

更新:我在.htaccess文件中写了这个

#Deny from all

RewriteEngine On   

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

ErrorDocument 404 /index.php

因此,经过一天的尝试,我发现我在配置虚拟主机时出错了

c:/xampp/apache/conf/extra/httpd-vhosts.conf
这就是它现在的工作方式:

<VirtualHost *:80>
  ServerAdmin webmaster@localhost
  DocumentRoot "C:/xampp/htdocs/new_admin/site"
  ServerName local.new_admin
</VirtualHost>

<Directory "C:/xampp/htdocs/new_admin/site">
  Options Indexes FollowSymLinks
  AllowOverride all
  Order Deny,Allow
  Deny from all
  Allow from 127.0.0.1
  # to allow access from my local network add this line so other PC on my   network are allowed in but not anything from the internet
 # If you want the world to be allowed in uncomment this line
 allow from all
</Directory>
我添加了以下几行:

127.0.0.1    localhost
127.0.0.1    local.new_admin  #this is my site
修复后,我在该目录中添加了一个新的.htaccess文件:

c:/xampp/htdocs/new_admin/site/
其中包括:

php_value memory_limit 64M
php_flag magic_quotes_gpc 0 
php_flag magic_quotes_runtime 0

在Codeigniter的应用程序文件夹和系统文件夹旁边,以添加mod_重写权限

现在要访问本地项目,我只需键入:

http://local.new_admin/admin/index

希望这对像我这样的新手有用。

你在使用mod_rewrite吗?@Kisaragi我不知道,我怎么能检查这个?@Kisaragi我已经检查了.htaccess文件,不,我没有使用mod_rewrite。如果“c:/xampp/htdocs/mysite/site/”是指向你网站文件的路径,URL将类似于“”?“新管理员”从何而来?
RewriteEngine On

RewriteBase /

#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]

#When your application folder isn't in the system folder

#This snippet prevents user access to the application folder

#Submitted by: Fabdrol

#Rename 'application' to your applications folder name.

RewriteCond %{REQUEST_URI} ^application.*

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

RewriteRule ^(.*)$ index.php?/$1 [L]
# 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
http://local.new_admin/admin/index