linux – 关闭htaccess会有明显的性能提升吗?

前端之家收集整理的这篇文章主要介绍了linux – 关闭htaccess会有明显的性能提升吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在apache中关闭htaccess的覆盖是否会提高性能?我在网上看了一下,关于此的文章/报道非常少.

如果是这种情况,我该怎么办呢?我会在默认的虚拟主机文件中执行此操作吗?

一个例子是:
OpenCart附带2个主要用于mod_rewrite的htaccess文件,如果我将其移动到< Directory>这会有所作为吗?

<VirtualHost *:80>
    ServerAdmin www@shop.co.uk
    ServerName shop.co.uk
    ServerAlias www.shop.co.uk
    DocumentRoot /var/www/shop/public

    <Directory /var/www/shop/public>
        Options +FollowSymlinks

        # Prevent Direct Access to files
        <FilesMatch "\.(tpl|ini|log)">
         Order deny,allow
         Deny from all
        </FilesMatch>

        RewriteEngine On
        RewriteBase /
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteRule ^([^?]*) index.PHP?_route_=$1 [L,QSA]
    </Directory>

    <Directory /var/www/shop/public/admin/view/javascript/ckeditor>
        AddType application/x-javascript .js
        AddType text/css .css

        # If PHP is mapped to handle XML files,you could have some issues. The following will disable it.
        AddType text/xml .xml
    </Directory>

    ErrorLog /var/log/apache2/shop-error.log
    LogLevel warn
    CustomLog /var/log/apache2/shop-access.log combined
</VirtualHost>

解决方法

Apache每次访问文件时都不需要查找.htaccess文件.实际的性能优势将取决于,

>您网站的流量
>网站布局
>服务器档案

我建议您使用Web压力工具(例如Apache的ab)进行基线现有性能,进行更改,重新配置,并查看它有多大的影响.

至于你的第二个问题,是的,我相信你会把.htaccess的东西转移到< Directory> < VirtualHost>中的部分.

原文链接:https://www.f2er.com/linux/397574.html

猜你在找的Linux相关文章