【发布时间】:2012-07-17 23:51:11
【问题描述】:
我需要将一种模式的所有 URL 更改为另一种模式:
http://www.example.com/index.php?option=com_fireboard 到 http://www.example.com/index.php?option=com_kunena
我该如何替换?
【问题讨论】:
标签: .htaccess mod-rewrite joomla
我需要将一种模式的所有 URL 更改为另一种模式:
http://www.example.com/index.php?option=com_fireboard 到 http://www.example.com/index.php?option=com_kunena
我该如何替换?
【问题讨论】:
标签: .htaccess mod-rewrite joomla
尝试在您的文档根目录中的 htaccess 文件中的适当位置添加它(如果您有的话,可能在您的 joomla 规则之前)
RewriteEngine On
RewriteCond %{QUERY_STRING} ^(.*)option=com_fireboard(.*)$
RewriteRule ^/?index\.php$ /index.php?%1option=com_kunena%2 [L]
【讨论】: