laravel 配置路由 除了 '/' 都是404,求助!!!
server {
listen 80;
server_name demo.com;
root /opt/demo/public/;
index index.html index.htm index.php;
location / {
index index.html index.htm index.php;
include /usr/local/etc/nginx/conf.d/php-fpm;
rewrite ^(.*)/equip(d+).html$ $1/index.php?m=content&c=index&a=lists&catid=$2 last;
}
}
Route::get('user/showprofile','UserController@showProfile');
求解!!
listen 80;
server_name demo.com;
root /opt/demo/public/;
index index.html index.htm index.php;
location / {
index index.html index.htm index.php;
include /usr/local/etc/nginx/conf.d/php-fpm;
rewrite ^(.*)/equip(d+).html$ $1/index.php?m=content&c=index&a=lists&catid=$2 last;
}
}
Route::get('user/showprofile','UserController@showProfile');
求解!!
0 个回复