试图在我们的新冠肺炎指示板为美国展示quarantine.country/coronavirus/dashboard/region/usa/而不是quarantine.country/coronavirus/dashboard/region/usa/,使用@anubhava的解决方案
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /coronavirus/dashboard/
RewriteRule ^region/(.*)$ /$1 [L,NC,R]发布于 2020-05-20 19:53:40
您可以在/coronavirus/dashboard/.htaccess中使用这些规则
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /coronavirus/dashboard/
RewriteRule ^(?!region/).*$ region/$0 [L,NC]这将允许您将URL用作:https://quarantine.country/coronavirus/dashboard/usa/。
https://stackoverflow.com/questions/61916016
复制相似问题