我正在重写网址www.DomainName.com/x。如果有任何用户输入
必须去exit.php,其中“x”可以是任何东西。
我的代码是
RewriteEngine on
RewriteRule /$ exit.php
RwriteRule $ exit.php
如何编写重写代码以转到exit.php,当输入DomainName.com时,它应该转到DomainName.com而不是exit.php
由于 让
答案 0 :(得分:2)
RewriteEngine on
RewriteRule ^(|start\.php)$ start.php [L] #Contains the filename you want to redirect when calling www.domain.tld/
RewriteRule .+ exit.php [L]