No, you cannot fulltext index a view.
You could try to join the view with the FT table(s). Or use an EXISTS subquery, like this:
SELECT *
  FROM vMyView
 WHERE EXISTS (SELECT *
                 FROM ftTable 
                WHERE ftTable.keyfield = vMyView.keyfield 
                  AND Contains(*, ' "keywords" ')
              )