目前无法处理此请求htaccess

时间:2018-10-01 17:47:14

标签: php mysql .htaccess codeigniter cpanel

在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>

1 个答案:

答案 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文件语法。