1
我在理解URL重寫規則時遇到了一些問題。如何使用RewriteRule命令在.htaccess中重寫文件夾路徑
我的網址是
http://example.com/katalog/selection/book.php
,我願與RewriteRule
將URL更改爲
http://example.com/selection
我的代碼:
RewriteEngine On
RewriteRule ^http://example.com/katalog/selection/book.php$ http://example.com/selection [R=301,L]
,但我不能訪問新路徑。
RewriteRule在完整的URL上不匹配,它只匹配URL的路徑組件。 – CBroe