cltphp在phpstudy里部署完成后可以访问首页,但是无法访问后台
上一篇:手机端访问跳转mobile
下一篇:建议本网站添加收藏帖子功能
appche在项目public目录下建.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>
nginx在项目public目录下建nginx.htaccess文件:
location / {
index index.html index.htm index.php;
#autoindex on;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}