Codeigniter issues with paths in localhost (XAMPP)

前端 未结 2 1653
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-15 00:56

The index page (aka homepage.php) in my code igniter install is working fine no matter what.

The problem lies with using subdirectories to store other pages, current

2条回答
  •  无人及你
    2021-01-15 01:15

    please create .htaccess file in project folder and write:

    
    RewriteEngine On
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    
    # Rewrite all other URLs to index.php/URL
    RewriteRule ^(.*)$ index.php?url=$1 [PT,L] 
    
    
    
     ErrorDocument 404 index.php
    
    

    You don't need to define in base_url in config file:

    $config['base_url'] = ''; // blank it.
    

提交回复
热议问题