.htaccess将所有URL(文件和目录除外)重定向到index.php

时间:2018-10-19 08:36:32

标签: php .htaccess

我将所有文件,URL,目录重定向到index.php,这是一个路由系统。

但是我想要是否有一个php文件,例如“ browse.php?id = 1”,我不想重定向到index.php这个文件。我怎样才能做到这一点? .php文件不应转到index.php

我的.htaccess

RewriteEngine On

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

RewriteRule ^(.*)/?$ index.php?url=$1 [QSA,L]

0 个答案:

没有答案
相关问题