<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase /homepage/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /homepage/index.php [L]
</IfModule>
それが私の .htaccess コードです。ホームページ/test.php に新しいファイルを作成しました。ブラウザからアクセスすると、アクセス エラーが発生します
i have tried by replacing index.php with test.php but it still not working
。
このコードがどのように機能するのか、なぜ私のコードが機能しないのかを説明してもらえますか。
i have deleted .htaccess but its still not working. What else file it can be.