如何使Apache停止记录我的Urls

时间:2018-08-07 09:29:20

标签: php apache vhosts setenvif

我有一个Web应用程序。

对我的应用程序的所有请求都将传递到Root / index.php。 示例:

1. http://myapp.com/?call=phpfile1.processSomething&param1=x&param2=y
2. http://myapp.com/?call=phpfile2.processSomethingElse
3. http://myapp.com/?call=phpfile3.methodXYZ...

我还有另一个应用程序(WindowServices),它将在我的WebApp中调用某些Urls(全天:v)。当我打开access.log时,它是这样的:

[2018-08-07 12:23:43] "GET /?call=phpfile1.processSomething&module=5 HTTP/1.1" 200 16
[2018-08-07 12:23:43] "GET /?call=phpfile2.processSomethingElse&module=2 HTTP/1.1" 200 16
[2018-08-07 12:23:43] "GET /?call=phpfile1.processSomething&module=0 HTTP/1.1" 200 16
[2018-08-07 12:23:43] "GET /?call=phpfile1.processSomething&module=7 HTTP/1.1" 200 16
[2018-08-07 12:23:43] "GET /?call=phpfile2.processSomethingElse&module=4 HTTP/1.1" 200 16
[2018-08-07 12:23:43] "GET /?call=phpfile2.processSomethingElse&module=3 HTTP/1.1" 200 16

而且... access.log文件随着时间的推移会变大。

因此,我不希望Apache登录Urls:

1./?call=phpfile1.processSomething
2./?call=phpfile2.processSomethingElse

我在vhost文件中设置了一些配置,如下所示:

<VirtualHost *:80>
    DocumentRoot "D:\MyFolderApp"
   <Directory "D:\MyFolderApp">
         AllowOverride All
         Order allow,deny
         Allow from all
         DirectoryIndex index.php index.html
         Require all granted         
   </Directory>
   ServerName myapp.com
   SetEnvIf Request_URI "^/?call=phpfile1.processSomething" dontlog
   SetEnvIf Request_URI "^/?call=phpfile2.processSomethingElse" dontlog
   LogFormat "%h %l %u %t \"%r\" %>s %b" common
   CustomLog "logs/myapp.com-access.log" common env=!dontlog
</VirtualHost>

但是Apache仍然为这些Urls编写日志!

所以,任何人都可以帮助我!!! 谢谢!

2 个答案:

答案 0 :(得分:0)

在您的配置SetEnvIf Request_URI "^/?call=phpfile1.processSomething" dontlog中,此行的格式为

SetEnvIf属性regex env-variable

因此您的正则表达式为“ ^ /?call = phpfile1.processSomething” ,其中包含特殊字符,例如'?'。转义这些字符并将您的正则表达式更改为^\/\?call=phpfile1\.processSomething(.*)

  

请记住要重新加载apache配置,重新加载或重新启动apache服务器

答案 1 :(得分:0)

感谢尼克和塔伦。我解决了我的问题。 在我的.htaccess文件中,添加一些配置:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule ^automate/phpfile1/(.*) ?call=phpfile1. processSomething&module=$1
    RewriteRule ^automate/phpfile2/(.*) ?call=phpfile2.processSomethingElse&module=$1
</IfModule>

在我的httpd-vhosts.conf文件中,设置如下:

SetEnvIf Request_URI "^/automate/phpfile1/"  dontlog
SetEnvIf Request_URI "^/automate/phpfile2/"  dontlog
CustomLog "logs/myapp.com-access.log" combined  env=!dontlog

因此,apache不会记录Uris:D