1

学習動画から抜け出した書き換えルールを使っています

しかし、それは正しく機能していません

Options +FollowSymLinks
Options -Indexes

DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA] 

http://www.example.com/hmvctest/helloworldと入力するだけでピックアップしてほしい

しかし、 http://www.example.com/hmvctest/index.php/helloworldと入力した場合にのみ機能し ます

現在、「入力ファイルが指定されていません」と表示されるだけです。

4

2 に答える 2