서버설정등의 문제로 mini 폴더내의 .htaccess 파일설정이 적용되지 않는 것 같습니다.
라이믹스가 설치된 폴더에도 동일하게 .htaccess 파일이 존재할 겁니다.
해당 파일을 에디터로 열어
RewriteEngine On
위의 줄 바로 아래쪽에
RewriteRule ^mini/admin/([^\/]+)/?$ mini/admin/index.php?menu=$1 [L]
RewriteRule ^mini/api/index.php$ mini/api/index.php?%{QUERY_STRING} [L]
RewriteRule ^mini/api/([^\/]+)$ mini/api/index.php?api=$1&idx=$2&%{QUERY_STRING} [L]
RewriteRule ^mini/api/([^\/]+)/?([^\/]+)?$ mini/api/index.php?api=$1&idx=$2&%{QUERY_STRING} [L]
RewriteRule ^mini/process/([^\/]+)$ mini/process/index.php?action=$1&%{QUERY_STRING} [L]
RewriteRule ^mini/process/([^\/]+)/?(.*?)?$ mini/process/index.php?action=$1&extras=$2&%{QUERY_STRING} [L]
를 추가하여 보시기 바랍니다.
위의 라인을 추가한 전체 파일은 아마 아래와 같은 모양일 거라 생각됩니다. (라이믹스 2.0.11 버전 기준)
RewriteEngine On
RewriteRule ^mini/admin/([^\/]+)/?$ mini/admin/index.php?menu=$1 [L]
RewriteRule ^mini/api/index.php$ mini/api/index.php?%{QUERY_STRING} [L]
RewriteRule ^mini/api/([^\/]+)$ mini/api/index.php?api=$1&idx=$2&%{QUERY_STRING} [L]
RewriteRule ^mini/api/([^\/]+)/?([^\/]+)?$ mini/api/index.php?api=$1&idx=$2&%{QUERY_STRING} [L]
RewriteRule ^mini/process/([^\/]+)$ mini/process/index.php?action=$1&%{QUERY_STRING} [L]
RewriteRule ^mini/process/([^\/]+)/?(.*?)?$ mini/process/index.php?action=$1&extras=$2&%{QUERY_STRING} [L]
# block direct access to templates, XML schema files, config files, dotfiles, environment, etc.
RewriteCond %{REQUEST_URI} !/modules/editor/(skins|styles)/
RewriteRule ^(addons|common/tpl|files/ruleset|(m\.)?layouts|modules|plugins|themes|widgets|widgetstyles)/.+\.(html|xml)$ - [L,F]
RewriteRule ^files/(attach|config|cache/store)/.+\.(ph(p|t|ar)?[0-9]?|p?html?|cgi|pl|exe|[aj]spx?|inc|bak)$ - [L,F]
RewriteRule ^files/(env|member_extra_info/(new_message_flags|point))/ - [L,F]
RewriteRule ^(\.git|\.ht|\.travis|codeception\.|composer\.|Gruntfile\.js|package\.json|CONTRIBUTING|COPYRIGHT|LICENSE|README) - [L,F]
# static files
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^(.+)/(addons|files|layouts|m\.layouts|modules|widgets|widgetstyles)/(.*) ./$2/$3 [L]
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^(.+)\.min\.(css|js)$ ./$1.$2 [L]
# all other short URLs
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule . index.php [L]