错误500 htaccess自定义SSL

时间:2018-03-05 20:57:28

标签: wordpress .htaccess customization

错误500 htaccess为SSL自定义 大家好,我在使用wordpress查看我的Blog内容时出现问题,其他页面出现“错误500” - “内部服务器错误” - “端口80的Apache服务器”。绿色锁定只显示正常主页。

如果您在Hostgator上使用CloudFlare时有另一种方法,请告诉我。

有没有人对此错误有任何解决方案?

说明

- 我使用代码更改了Htaccess:

# Redirecionamento para HTTPS 
RewriteCond %{HTTP_HOST} ^namefolder\.
RewriteRule ^(.*)$ /namefolder/index.php$1 [L]

<IfModule mod_headers.c>
  <FilesMatch "\.(ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$">
    Header set Access-Control-Allow-Origin "*"
  </FilesMatch>
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /namefolder/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /namefolder/index.php [L]
</IfModule>

# END WordPress

0 个答案:

没有答案