簡體   English   中英

.htaccess URL 重寫(從 URL 中刪除文件夾)

[英].htaccess URL rewrite (remove folder from URL)

嘗試使用@anubhava解決方案在我們的covid-19 儀表板中顯示quarantine.country/coronavirus/dashboard/usa/區.country/coronavirus/dashboard/usa/ 而不是quarantine.country/coronavirus/dashboard/region/usa/ .country/coronavirus/dashboard/region/usa/:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /coronavirus/dashboard/

RewriteRule ^region/(.*)$ /$1 [L,NC,R]
  • 請讓我知道為什么上面的解決方案似乎沒有所需的重寫。 謝謝!

您可以在/coronavirus/dashboard/.htaccess中使用這些規則:

Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /coronavirus/dashboard/

RewriteRule ^(?!region/).*$ region/$0 [L,NC]

這將讓您使用 URL 作為: https://quarantine.country/coronavirus/dashboard/usa/

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM