apache
新建 .htaccess文件
<IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_URI} !^/public/ RewriteRule ^(.*)$ /public/$1 [L] </IfModule>
nginx
配置文件里 root /www/xxxx.com/ 修改为 root /www/xxxx.com/public
apache
新建 .htaccess文件
<IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{REQUEST_URI} !^/public/ RewriteRule ^(.*)$ /public/$1 [L] </IfModule>
nginx
配置文件里 root /www/xxxx.com/ 修改为 root /www/xxxx.com/public