我将此内容添加到我的.htaccess
到根目录。但我得到了403禁止的消息!
AddType application/x-httpd-php53 php53 php
php_flag log_errors on
php_flag display_errors on
#php_value error_reporting 8
php_value error_reporting E_ALL
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^shidsa.com/$ [NC]
RewriteRule ^(.*)$ http://www.shidsa.com/$1 [R=301,L]
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
</IfModule>
order allow,deny
allow from all
这应该可以正常工作:
答案 0 :(得分:0)
没有指令直接导致403响应。
“禁止”响应的可能原因可能是
检查脚本返回代码
将PHP版本更改为某个当前版本,例如5.6或7.0,或完全删除
AddType
指令