1
我想知道是否有辦法實現這種URL重寫;如果頁面存在於子文件夾中,則重寫URL
RewriteRule ^example-link-1?$ /blog/example-link-1 [NC,L]
RewriteRule ^example-link-2?$ /blog/example-link-2 [NC,L]
RewriteRule ^example-link-3?$ /blog/example-link-3 [NC,L]
RewriteRule ^example-link-4?$ /blog/example-link-4 [NC,L]
,你直接去如example.com/example-link-1
鏈接,你實際上是從example.com/blog/example-link-1
顯示的內容,而無需每頁我添加新的規則。有沒有一種動態的方式來做到這一點在htaccess中?即;如果存在('blog /'+ pageURI) 那麼重寫爲'blog /'+ pageURI,但保留沒有'blog /'的uri在其中。
完美謝謝! – Jai
不客氣,很高興它的工作。 – anubhava