修改内链转换功能增加发布文章内容自动添加网站内链功能
后台功能齐全,可发送邮件,用户留言,自定义栏目,栏目模板,数据备份,添加管理员,网站优化,一健生成站点地图,一健添加站内连接等。
Hsycms企业管理系统可做PC和手机网站,两套不同模板分开管理。
好生意CMS是由好生意工作室团队开发
注意:安装此程序网站必须 PHP 5.4 以上环境,支持伪静态
后台地址:http://www.xxx.com/hsycms admin admin
============================================
ngnix伪静态
server {
listen 80;
server_name test.wqzsub.com;
location / {
root /var/www/test;
index index.php index.html index.htm;
/*主要加了这一块*/
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
/*end*/
}
location ~ \.php$ {
root /var/www/test;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}