在CWP控制面板上安装后,我需要编辑httpd.conf文件以运行我的脚本的帮助。我的脚本使用默认设置在cpanel上运行。 .htaccess文件详细信息:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
Apache config
<FilesMatch ".(eot|ttf|otf|woff|php)">
Header set Access-Control-Allow-Origin "*"
</FilesMatch>
答案 0 :(得分:1)
尝试删除Apache config
行,以便您的.htaccess文件如下所示:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
<FilesMatch ".(eot|ttf|otf|woff|php)">
Header set Access-Control-Allow-Origin "*"
</FilesMatch>
使用htaccesscheck.com检查您的.htaccess文件语法。