.htaccess URL rewrite (remove folder from URL)

后端 未结 1 1349
-上瘾入骨i
-上瘾入骨i 2021-01-23 16:23

Trying to show quarantine.country/coronavirus/dashboard/usa/ instead of quarantine.country/coronavirus/dashboard/region/usa/ at our covid-19 dashboard

1条回答
  •  无人及你
    2021-01-23 16:47

    You may use these rules in /coronavirus/dashboard/.htaccess:

    Options +FollowSymLinks -MultiViews
    RewriteEngine On
    RewriteBase /coronavirus/dashboard/
    
    RewriteRule ^(?!region/).*$ region/$0 [L,NC]
    

    This will let you use URL as: https://quarantine.country/coronavirus/dashboard/usa/

    0 讨论(0)
提交回复
热议问题