简体   繁体   中英

codeigniter: removing index.php not working in xampp

i can't access base_url/controller/method without index.php, i try to remove index.php using .htaccess but still not working. 404 Page Not Found but my another project is working with same setting in same xampp

this is my config.php

$config['base_url'] = 'http://localhost/sistem-informasi-bimbel/';
$config['index_page'] = '';
$config['uri_protocol']  = 'REQUEST_URI';

this is my routes.php

$route['default_controller'] = 'main/home';
$route['404_override'] = '';
$route['translate_uri_dashes'] = TRUE;

this is my .htaccess file, i put it outside application folder

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

mod rewrite is enable on httpd.conf

LoadModule rewrite_module modules/mod_rewrite.so

This code is perfectly work for me.

You need to create a gallery() under main controller. same as below:

<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Main extends CI_Controller {


    public function gallery()
    {
        $this->load->view('welcome_message');
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM