0

我正在使用带有 smarty 模板的加密 php 程序。

我想打开链接比如index.php?page=login用login.php打开,所以我使用了Rewrite模式.htaccesss,例如

RewriteRule ^/*login.php$ /index.php?page=login [L]

在几页中应该有一个错误查询,例如

RewriteRule ^/*support.php?(.+)$ /index.php?page=support&%{QUERY_STRING} [L]

它可以工作,但我需要拒绝主 URL,因此当用户手动输入 index.php?a=login 时,什么都不会显示(或主页),他应该只使用 /login.php 打开链接。有没有办法做到这一点?

有点帮助请...

4

1 回答 1

0

它应该在(!)其他规则之前与相应的 rewirterule 一起使用:

RewriteRule ^/*index.php?a=login$ / [L]
于 2012-09-01T15:46:04.910 回答