.htaccess CMS CodeIgniter上的htaccess语法

.htaccess CMS CodeIgniter上的htaccess语法,.htaccess,content-management-system,.htaccess,Content Management System,我目前正在使用CI创建CMS。我有以下访问权限: 这对我来说很好,但当我尝试访问mywebsite.com/admin/user/login时,找不到该页面。我能怎么办 Options +FollowSymLinks RewriteEngine on # Send request via index.php RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ i

我目前正在使用CI创建CMS。我有以下访问权限:

这对我来说很好,但当我尝试访问mywebsite.com/admin/user/login时,找不到该页面。我能怎么办

Options +FollowSymLinks
RewriteEngine on

# Send request via index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]