1
如何做到以下htaccess的重定向爲Joomla頁
http://goozga.com/demo/index.php?option=com_content&view=article&id=70
需要一個htaccess重定向改寫上述網址可
http://goozga.com/demo/index.php?option=com_content&view=article&id=73
幫我嗎?
如何做到以下htaccess的重定向爲Joomla頁
http://goozga.com/demo/index.php?option=com_content&view=article&id=70
需要一個htaccess重定向改寫上述網址可
http://goozga.com/demo/index.php?option=com_content&view=article&id=73
幫我嗎?
試着這麼做:
RewriteCond %{QUERY_STRING} option=com_content&view=article&id=70$
RewriteRule .* index.php?option=com_content&view=article&id=73 [L]
請注意,你的問題無關,與Joomla而是依賴於Apache的mod_rewrite
代替。
在Joomla中,您也可以使用重定向組件。您只需添加一個新的重定向規則,並將第一個URL作爲源,第二個作爲目標網址。
出於好奇,你爲什麼要重定向1篇文章? – Lodder
一個頁面包含多個atricles,因此如果任何artilce分別來自搜索引擎,我們需要重定向到它所在的正確頁面。 –