Dovrai aggiungere le seguenti righe a httpd.conf:
# This tells Apache where to look for phpmyadmin
Alias /phpmyadmin C:/wamp/apps/phpmyadmin3.5.1
# This gives permission to serve the directory
<Directory C:/wamp/apps/phpmyadmin3.5.1>
Options None
AllowOverride None
# This allows eveyone to access phpmyadmin, which you may not want
Order Allow,Deny
Allow from all
</Directory>
Dopo aver apportato queste modifiche e riavviato Apache, dovrebbe funzionare.
Sospetto che la prima riga possa essere già presente, perché stai ricevendo un 403 e non un 404.