nginx配置文件的端口和目录都改了,为啥还是403
1.检查下.htaccess:
<IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1] </IfModule>
2.使用了域名的话,是否配置了host文件
3.vhosts.conf文件是否有配置:
if (!-e $request_filename){ rewrite ^(.*)$ /index.php?s=$1 last; break; }
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
1.检查下.htaccess:
2.使用了域名的话,是否配置了host文件
3.vhosts.conf文件是否有配置: