Apache 伪静态设置

标签: none

Apache2.2

DocumentRoot "/var/www/example.com/public"

    RewriteEngine On

    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]

Apache2.4
Apache 文档

DocumentRoot "/var/www/example.com/public"

    RewriteEngine On
    RewriteBase "/"
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]

apache2.4和2.2的伪静态是不是不一样啊?


扫描二维码,在手机上阅读!

添加新评论