网址就是这样的
site.com /#/ FR /欢迎/
我想在/ fr / part的url中重写(并删除)而不影响其他任何内容
/ fr /和/ welcome /首先不是实际的文件夹。我目前使用Angular的开发人员。
我不知道该做什么,我实际上搜索了类似的线程,但这些线程中的所有内容都没有做任何事情或页面无法加载。
任何人都可以提供帮助?感谢
这是我目前的Nginx配置:
server {
listen 80;
server_name www.site.co site.co;
root /home/forge/site.co/public;
# FORGE SSL (DO NOT REMOVE!)
# ssl_certificate;
# ssl_certificate_key;
index index.html index.htm index.php;
charset utf-8;
if (!-d $request_filename) {
rewrite ^/(.+)/$ /$1 permanent;
}
location / {
try_files $uri $uri/ /fr/index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log on;
error_log /var/log/nginx/site.co-error.log error;
error_page 404 /index.php;
答案 0 :(得分:0)
在nginx中没有什么可以做的,因为浏览器不会在hashbang之后将数据发送到服务器。