如何从apache中重写2个url

时间:2016-04-05 00:34:31

标签: apache .htaccess url-rewriting ckeditor4.x

我使用这个结构/fa/site/controller/method/id编写了一个使用干净网址的框架。问题是ckfinder在上传时与ckeditor集成,浏览图片使用其他类型的网址。我想要排除这些地址,重新启动可能有助于工作。 我的htaccess代码是

select UniqID = case 
                   when GROUPING_id([SupposedUnique]) = 1 then 'Total' 
                   else [SupposedUnique] end,   
       Percentage = CONVERT(Decimal(5,2),sum(cnt))
from (
      select distinct [SupposedUnique]
             ,cnt =  CONVERT(Float, 
                     COUNT(*) over ( partition by [SupposedUnique]))
                    /(COUNT(*) over ())*100
             ,cnt1 = COUNT(*) over ( partition by [SupposedUnique])  
      from [MyTable]) result
where result.cnt1 > 1
group by cube([SupposedUnique]) 

我正在使用wamp v.2.4.17 评论是我试图帮助的故事,但没有帮助。 任何帮助表示赞赏

0 个答案:

没有答案