私はこのように私のURLを持っています
http://127.0.0.1:420/github/myproject/users
私の .htacess ファイルには次のコードがあります
<IfModule mod_rewrite.c>
DirectoryIndex index.php
RewriteEngine on
RewriteBase /github/myproject
RewriteCond $1 !^(index\.php|images|style|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]
</IfModule>
私の URL に合った RewriteRule 式の書き方を教えてもらえますか? 事前に助けてくれてありがとう