1、Enterprise official website ->Site configuration ->Plugin configuration, remove/wwh from the pseudo static value column;
2、When modifying the homepage redirect link in column management, also delete/wwh, and clear the backend cache and browser cache after modification.
chown www:www /var/www/yoursite -R
chmod 555 /var/www/yoursite -R
chmod u+w /var/www/yoursite/runtime -R
chmod u+w /var/www/yoursite/public/uploads -R
1. Configure the backend email account: General Management ->System Configuration ->Email Configuration. After configuration, click Send Test Email to verify if the configuration is effective;
2. Configure message and resume email addresses: Enterprise official website ->Site configuration ->Plugin configuration, fill in the corresponding receiving email address.
If you are using PHPStudy, it is recommended to refer to the pseudo static configuration in the video installation tutorial: https://www.fastadmin.net/video/install.html .
Apache Rules
Nginx Rules
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}