codeigniterを使用したrewriterulesでWebページのURLを短くしようとしています。
.htaccessにアクセスしました:
RewriteEngine on
RewriteBase /ci/
RewriteRule ^([0-9a-zA-Z_-]+)?$ index.php/controller/method/$1
しかし、私のアプリケーションはすべてを無視しているようです。
置いた:
http://localhost/ci/variable
エラーページが表示されます:
オブジェクトが見つかりませんエラー404。
LoadModule rewrite_module modules/mod_rewrite.so
コメントもありません。
私は単純なプロジェクトでそれを実行し、それが機能しているように見えますが、私のcodeigniterでは機能しません。
誰かがこの問題を解決するのを手伝ってもらえますか?
ありがとう。
解決済み:
Adding RewriteEngine on
RewriteRule ^([0-9a-zA-Z_-]+)?$ /ci/index.php/controller/method/$1 [L,R=301]