我的网站正在解决两个问题:
https://www.itcontractorsuk.com和https://www.itcontractorsuk.com/index.php
我可以做什么,以便额外的index.php不会显示在URL中。它只发生在主页上。
答案 0 :(得分:2)
select
case when EventCategory < 0.05 Then 'NOT INCL' ELSE 'OK' END AS Under3Min
from
(
Select
Sum(case when CustomEvent = 'without Stop' then cast(EventEndDateTime - EventStartDateTime as float)*24 else 0 end) as EventCategory
FROM tDataCategory Where (CustomEvent = 'without Stop' AND cast(EventEndDateTime - EventStartDateTime as float)*24 >=0.05) OR CustomEvent != 'without Stop'
) x
应该做的伎俩。
把它放在你的.htaccess
中