5

我正在尝试使用它.htaccess来更改RewriteBase位置是本地服务器还是实时服务器。

Options +FollowSymlinks
RewriteEngine on

<LocationMatch "^/(bbtsrv02)/$">
    #RewriteBase /beta/admin/
</LocationMatch>

RewriteCond %{REQUEST_URI} !index.php$
RewriteCond %{REQUEST_URI} !css/(.*)\.
RewriteCond %{REQUEST_URI} !img/(.*)\.
RewriteCond %{REQUEST_URI} !incs/(.*)\.
RewriteCond %{REQUEST_URI} !js/(.*)\.
RewriteCond %{REQUEST_URI} !upload/(.*)\.
RewriteCond %{REQUEST_URI} !widget/(.*)\.
RewriteRule ^(.*) index.php?_pd=$1 [NC,L]

一旦我删除了LocationMatch整个事情就会重新开始工作。我只需要更改RewriteBase实时测试。

4

1 回答 1

11

<LocationMatch>指令不能在 .htaccess 文件中使用——只能在服务器配置或虚拟主机上下文中使用。

http://httpd.apache.org/docs/current/mod/core.html#locationmatch

于 2011-07-12T11:56:28.483 回答