Save the current headers as the first row of the dataframe using df.loc[-1] = df.columns and adjust the index.
df.loc[-1] = df.columns
Rename the columns to the correct ones with df.columns = ['column 1', 'column 2'].
df.columns = ['column 1', 'column 2']
Done!