我有以下地址
http://subdomain.example.com/content/category/25/72/138
我想将其重定向到
http://example.com/index.php?option=com_content&view=category&id=73&Itemid=132
我该怎么做?
答案 0 :(得分:1)
您需要.htaccess
中的类似内容:
RewriteEngine On
RewriteRule ^com_([^/]*)/25/([^/]*)/([^/]*)/([^/]*)$ /index.php?option=$1&view=$2&id=$3&Itemid=$4 [L]`
但为什么你在URL中跳过25
?