我一直在努力解决这个问题,但仍然没有任何线索,为什么它不起作用。我部署了一个从托管到本地服务器的网站,以测试/更新目的。 Admin park工作正常,主页工作正常,目录和组件工作正常。但是依赖于url -rewrite引擎的每个组件都无法工作。它将我发送到404.例如,我可以浏览/ catalog /目录,但如果我请求/商品/好/我被发送到404,所以发生新闻组件等。我尝试了很多服务器配置的变化,但结果要么相同的服务器错误。
我将实验重置为默认配置,似乎必须正常工作
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
<Directory "C:\VertrigoServ\www">
Options Indexes FollowSymLinks Includes
AllowOverride All
Require all granted
</Directory>
它似乎有效,但是以一种奇怪的方式。如果我将重定向指令添加到.htaccess,它会执行重定向。但无论如何,Bitrix都无法正常工作。
这是我在主.htaccess文件中留下的内容
Options -Indexes
ErrorDocument 404 /404.php
<IfModule mod_php5.c>
php_flag allow_call_time_pass_reference 1
php_flag session.use_trans_sid off
#php_value display_errors 1
#php_value mbstring.internal_encoding UTF-8
</IfModule>
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !/bitrix/urlrewrite.php$
RewriteRule ^(.*)$ /bitrix/urlrewrite.php [L]
RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization}]
</IfModule>
<IfModule mod_dir.c>
DirectoryIndex index.php index.html
</IfModule>
<IfModule mod_expires.c>
ExpiresActive on
ExpiresByType image/jpeg "access plus 3 day"
ExpiresByType image/gif "access plus 3 day"
</IfModule>
如果您遇到类似问题,请帮我找到解决方案......