UbuntuとApache2とCodeIgniterをベースにしたアプリケーションを開発しています
私はSite
このような名前のコントローラーを持っています
class Site extends CI_Controller {
public function view($page = 'home')
{
$this->load->view('site/'.$page, $data);
}
}
application/views/site
私が持っているhome.php
&about.php
localhost/index.php/about
うまく機能します
がlocalhost/about
、
Not Found,The requested URL /about was not found on this server.
私はすでにしました
mod_rewrite
オンになっていてAllowOverride All
、apache2設定ファイルにあることを確認してください。$config['index_page'] = '';
のapplication/config/config.php
ルートも設定しました
$route['default_controller'] = "site/view";
$route['404_override'] = '';
$route['(:any)'] = "site/view/$1";
これが私の.htaccess
:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
<Files "index.php">
AcceptPathInfo On
</Files>