我需要将一种模式的所有网址都更改为另一种模式:
http://www.example.com/index.php?option=com_fireboard 至 http://www.example.com/index.php?option=com_kunena
我怎么会这样替换?
答案 0 :(得分:0)
尝试在你的文档根目录中的htaccess文件中添加适当的地方(可能在joomla规则之前,如果你有的话)
RewriteEngine On
RewriteCond %{QUERY_STRING} ^(.*)option=com_fireboard(.*)$
RewriteRule ^/?index\.php$ /index.php?%1option=com_kunena%2 [L]