以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
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐