This file is indexed.

/usr/share/horde/whups/query/.htaccess is in php-horde-whups 3.0.9-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
8
9
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond   %{REQUEST_FILENAME}  !-d
    RewriteCond   %{REQUEST_FILENAME}  !-f
    RewriteRule   ^([0-9]+)/?$ run.php?query=$1 [QSA]
    RewriteRule   ^([0-9]+)/rss/?$ rss.php?query=$1 [QSA]
    RewriteRule   ^([a-zA-Z0-9_]+)/?$ run.php?slug=$1 [QSA]
    RewriteRule   ^([a-zA-Z0-9_]+)/rss/?$ rss.php?slug=$1 [QSA]
</IfModule>