.htaccess url-rewrite if file not exists

后端 未结 3 2125
耶瑟儿~
耶瑟儿~ 2020-12-03 02:45

I must do a little trick for a site! The idea is:

  • if a file for a required url exists then I go to that url, doing nothing more;
  • if a file for a requi
3条回答
  •  独厮守ぢ
    2020-12-03 03:15

    RewriteEngine on
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^.*$ /default.php [L]
    

提交回复
热议问题