当前无法处理此请求 htaccess



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

尝试删除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 文件语法。

相关内容

  • 没有找到相关文章

最新更新