FTM 2014 exports to GEDCOM the web address for a citation to the custom _LINK tag which RM 7.0.8.0 does not recognise. You can modify the FTM GEDCOM so that RM will import the URL into the WebTag for the citation. For example,
FTM GEDCOM Output:
3 _LINK http://search.ancestry.com/cgi-bin/sse.dll?db=uki1861&h=11149416&ti=0&indiv=try&gss=pt
converted to a RM WebTag equivalent:
3 _WEBTAG 4 NAME TBD 4 URL http://search.ancestry.com/cgi-bin/sse.dll?db=uki1861&h=11149416&ti=0&indiv=try&gss=pt 4 NOTE Imported from FTM
I used a regular expression search and replace in Notepad++:
Search:
3 (_LINK)(.+)
Replace:
3 _WEBTAG\r\n4 NAME TBD\r\n4 URL $2\r\n4 NOTE Imported from FTM
Web addresses for other things might be at a GEDCOM level other than 3. Because the Notepad++ regular expression function does not do arithmetic, one would have to revise the search and replace expressions for each different level. A simple program could handle all levels if someone wanted to write it. Wouldn't it be nice if the RootsMagician revised the import to handle FTM's _LINK tag without our having to pre-process the GEDCOM? Reminds me of RMπ (RMpi) GEDCOM Pre-Import Tweaker for RootsMagic whose code I have not looked at in over a year and don't have time now...