0

这段代码有什么问题?它适用于我的另一台服务器,但不适用于我的新服务器。这里是

  Options -Indexes
  RewriteEngine on
  RewriteBase /
  RewriteCond %{HTTP_HOST} !^(www\.)?(somesite\.mobi)$ [NC]
  RewriteCond %{REQUEST_URI} !^/websites/
  RewriteCond %{HTTP_HOST} ^(.*)$ [NC]
  RewriteRule ^(.*)$ /websites/%1/$1 [L]
  AddType application/x-httpd-php .js
  AddHandler x-httpd-php5 .js
  <FilesMatch "\.(js|php)$">
  SetHandler application/x-httpd-php
  </FilesMatch>
  ErrorDocument 404 /member_not_found.php
  ErrorDocument 403 /member_new_index.php
4

1 回答 1

0

您应该检查error_log - 我看到他们正在使用cPanel,所以应该有一个选项可以从那里查看error_log(我猜这是一个共享帐户)。如果您有 vps/dedicated 和 root 访问权限,只需检查 /usr/local/apache/logs/error_log,它肯定会提供更多详细信息。

于 2013-07-10T10:27:07.983 回答