.htaccess在子域

时间:2017-05-19 11:56:52

标签: apache .htaccess mod-rewrite url-rewriting kohana

这是我用来重定向的htaccess代码,请建议好的解决方案我使用此以前与另一台服务器相同但当我更改主机时我收到此错误

内部服务器错误

服务器遇到内部错误或配置错误,无法完成您的请求。

请通过webmaster@payments.boutiquemerchantsolutions.com与服务器管理员联系,告知他们此错误发生的时间以及您在此错误发生之前执行的操作。

服务器错误日志中可能提供了有关此错误的更多信息。

此外,尝试使用ErrorDocument处理请求时遇到500内部服务器错误错误。

Header set Access-Control-Allow-Origin "*"
# Turn on URL rewriting
RewriteEngine On

# Installation directory
#RewriteBase /

# Protect application and system files from being viewed
RewriteRule ^(application|modules|system) - [F,L]

RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# Rewrite all other URLs to index.php/URL
#RewriteRule .* index.php/$0 [PT,L]
#RewriteRule ^(.*)$ index.php/$1 [PT,L]
RewriteRule .* index.php?kohana_uri=$0 [PT,QSA,L]

0 个答案:

没有答案