我有我的网址以这种方式
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>
谁能帮我编写适合我的网址的 RewriteRule 表达式?感谢您提前提供帮助