隐藏入口文件
·
以nginx为例 在vhost.conf中添加
# nginx configuration
location /manage {
if (!-e $request_filename){
rewrite ^/manage(.*)$ /admin.php$1 last;
}
}
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php last;
}
}
以apache为例 在.htaccess添加
#请求的文件或路径是不存在的,如果文件或路径存在将返回已经存在的文件或路径
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
更多推荐
已为社区贡献1条内容
所有评论(0)