时间:2021-07-01 10:21:17 帮助过:23人阅读
Options +FollowSymLinks -MultiViewsRewriteEngine onRewriteBase /# All other pages# Don't rewrite real files or directoriesRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_URI} !^.*(\.css|\.js|\.gif|\.png|\.jpg|\.jpeg)$RewriteRule ^(.*)$ index\.php?main_page=$1&%{QUERY_STRING} [L]
-s判断请求的文件是否是一个存在的非空文件;判断不是可以用:!-s
RewriteCond %{REQUEST_FILENAME} !-s