LoginSignup
5
6

More than 5 years have passed since last update.

CodeIgniterの設定

Posted at

マニュアルに掲載されている手順でインストールしたあと、
アクセスするURLはデフォルトでは、

example.com/index.php/news/article/my_article

となっているので、
example.com/news/article/my_article
とするために、.htaccessに

RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]

を追加する

詳しくは、本家のマニュアルをを。

5
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
6