RewriteEngine on #开启重写 RewriteCond %{REQUEST_FILENAME} !-d #当不是目录的时候,重写 RewriteCond %{REQUEST_FILENAME}!-f #当不是文件的时候 重写 RewriteRule ^(.*)$ index.php/$1 [L] #不满足上面的任意一条语句 都会重写到 index.php 中
发布时间:2018-04-13
RewriteEngine on #开启重写 RewriteCond %{REQUEST_FILENAME} !-d #当不是目录的时候,重写 RewriteCond %{REQUEST_FILENAME}!-f #当不是文件的时候 重写 RewriteRule ^(.*)$ index.php/$1 [L] #不满足上面的任意一条语句 都会重写到 index.php 中