私のウェブサイトには、インデックスを除く私のサイトのページで問題なく機能する 3 つのルールがあります。私のインデックスページは ecorustic.php と呼ばれていますが、拡張子なしで単に ecorustic を表示したいのですが、ページをブラウジングすると ecorustic/mountain/himalaya (拡張子が失われます) が表示されますが、ホームページに戻ると表示されますecorustic.php . お願いします
# my .htacces file
RewriteEngine on
RewriteRule ^ecorustic/.php$ index.php #i made it so the server views it as index
RewriteRule ^ecorustic/(.*)/(.*)$ ecorustic.php?categorie=$1&nume=$2
RewriteRule ^ecorustic/(.*)$ ecorustic.php?categorie=$1 [L]