Apache标题打印在网页上

时间:2016-04-07 06:42:03

标签: apache .htaccess

我对.htacces文件很新,因为某些原因会在每个网页上打印???

HTTP/1.1 200 OK Date: Thu, 07 Apr 2016 06:36:09 GMT Server: Apache/2.2.3 (CentOS) Content-Length: 0 Connection: close Content-Type: text/plain; charset=UTF-8

我不知道为什么?如果我删除它没有显示.htacces。 这是我的.htacces文件

<IfModule mod_rewrite.c>
Redirect /update /sdp/wcs.start.cls


Options +FollowSymlinks
RewriteEngine On

RewriteRule    ^sdp/callsystem/?$    /sdp/callsystem.csp    [NC,L]    # Handle language requests
RewriteRule    ^sdp/callsystem/([0-9]+)/?$    /sdp/callsystem.csp?TAA=$1    [NC,L]    # Handle language requests
RewriteRule    ^sdp/logout?$    /sdp/logout.csp    [NC,L]    # Handle logout requests

1 个答案:

答案 0 :(得分:0)

看起来您的条件不平衡:

您必须再次关闭<IfModule mod_rewrite.c>语句:

<IfModule mod_rewrite.c>
    ....
</IfModule>

或者您只是完全删除该条件。无论如何,它在.htaccess样式文件中没有任何意义。