you need to look in /etc/apache2/sites-available/
Create a new file called piknclik and then enter the following :
<VirtualHost *>
ServerAdmin webmaster@localhost
ServerName
www.piknclik.com DocumentRoot /var/www/piknclik/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/piknclik/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
CustomLog /var/log/apache2/access.log combined
</VirtualHost>
This assumes /var/www/piknclik is where your html files are. Change this accordingly.
Then run 'sudo a2ensite piknclik' , and then run 'sudo /etc/init.d/apache2 reload'
Job Done