Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これを達成するためにcodeigniterを使用しています
test.html redirect to index.php/test/test
まあ最初のテストはフォルダ名です
& 2番目のテストはコントローラーです
test.html の場合、次のように実行できます。
RewriteEngine On RewriteBase / RewriteRule ^test.html$ index.php/test/test [L]
またはroutes.php、ルートを定義することもできます
routes.php
$route['test.html'] = 'index.php/test/test';