Php/codeigniter/url短縮
提供: 初心者エンジニアの簡易メモ
apacheでの対応
プロジェクト直下に以下ファイル追加
.htaccess
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L]
ttp://ci3app.localhost/index.php/hello
上記でアクセスを、以下短縮urlでアクセスできるようになる。
ttp://ci3app.localhost/hello