Apache重写目录索引

时间:2014-12-28 21:13:09

标签: apache .htaccess mod-rewrite httpd.conf

基本上,如果用户代理字符串包含某些内容,那么我希望忽略DirectoryIndex。这似乎根本不起作用。

1 个答案:

答案 0 :(得分:1)

您可以尝试这样的事情:

  DirectoryIndex index.html index.php

  RewriteEngine On
  RewriteCond %{HTTP_USER_AGENT} !Kodi [NC]
  RewriteCond %{REQUEST_FILENAME} -d
  RewriteRule ^ /_h5ai/server/php/index.php [L,QSA]