我希望将 URL www.michelenerna.nl 重定向到 www.michelenerna.nl/wycliffe。
实际的 Joomla 路径是 /wycliffe = http://www.michelenerna.nl/index.php?option=com_content&view=article&id=97&Itemid=249
所以,我想: .htaccess 中的以下几行应该是合适的,但它不起作用。www.michelenerna.nl 仍然指向 www.michelenerna.nl
这是代码:
Options SymlinksIfOwnerMatch
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.michelenerna.nl [NC]
RewriteRule ^article(.*)$ http://www.michelenerna.nl/index.php?option=com_content&view=article&id=97&Itemid=249/$1 [R=301,L]
为什么它不起作用?