.htaccess将子域地址重定向到主域的地址

时间:2015-07-11 13:38:04

标签: .htaccess redirect

我有以下地址

http://subdomain.example.com/content/category/25/72/138

我想将其重定向到

http://example.com/index.php?option=com_content&view=category&id=73&Itemid=132

我该怎么做?

1 个答案:

答案 0 :(得分:1)

您需要.htaccess中的类似内容:

RewriteEngine On
RewriteRule ^com_([^/]*)/25/([^/]*)/([^/]*)/([^/]*)$ /index.php?option=$1&view=$2&id=$3&Itemid=$4 [L]`

但为什么你在URL中跳过25