我是.htaccess的新手。这是我的目录结构(文件夹名称urshow)
api
-config
-modules
--v1
---controllers
---models
-runtime
-tests
-web
backend
common
console
environments
frontend
内部控制器我有一个名为电影的控制器。这是我在api / web中的htaccess文件
RewriteEngine on
RewriteBase /~user/urshow/api/modules/v1/web/
# If a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Otherwise forward it to index.php
RewriteRule . index.php
现在,当我尝试运行此网址时,我收到了“not found error http://192.168.1.4/~user/urshow/api/web/movies
”。我的htaccess文件出了什么问题?