Apache的Rewrite设置文件存在则不rewrite

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(cn|en)/(.*) index\.php\?lang= 1&r=$2 [QSA,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*) index\.php\?r= 1 [QSA,L]

你可能感兴趣的:(rewrite)