如何检查我的服务器上是否安装了mod_php5.c等php模块?

How do I check if mod_php5.c, mod_suphp.c and mod_rewrite.c are installed on my server?

Tried searching there before posting here, but I can't find any with these names, does that mean they're not installed? Or if it's installed, where does it show in the phpinfo()?

I'm using WHM/CPANEL, Cent OS.

create a file with name like info.php and write the below code in it and execute and see all the php information in it.

    <?php
      phpinfo();
    ?>

You can use <?php phpinfo(); ?> to check php list of active php modules.

active php modules in phpinfo via chrome