我在浏览器上输入此网址:
localhost:8085/farabi/Fateme/index
我不知道为什么会收到此错误:
找不到对象!
在此服务器上找不到请求的URL。如果您输入了URL 请手动检查您的拼写,然后重试。
如果您认为这是服务器错误,请与网站管理员联系。 错误404
Fateme.php:
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Fateme extends CI_Controller {
public function index()
{
$this->load->view('welcome_fateme');
}
}
config.php:
$config['base_url'] = 'http://localhost:8085/farabi/';
$config['index_page'] = '';
根文件夹中的htaccess
(/ farabi):
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
答案 0 :(得分:0)
删除你的htaccess并将其替换为下面的
$ DIRECTORY DCL$PATH:XYZ
另请阅读此内容以获取更多信息https://stackoverflow.com/a/19197074/4481606