.htaccess排除真實(shí)目錄和文件規(guī)則
RewriteEngine on
RewriteBase /html
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
#RewriteRule ^.*/(sysadm/.+)$ $1/index.php [L]
.htaccess排除真實(shí)目錄和文件規(guī)則
RewriteEngine on
RewriteBase /html
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
#RewriteRule ^.*/(sysadm/.+)$ $1/index.php [L]