Sorry... I'll try differently...
For a PC file to be available to another device, you need a software that will make the files available over the network. A HTTP server of some sort. You'll probably need to install an run something on your PC (I have an apache server on my Linux box, I don't really know what is the best solution to run on a normal PC).
The aforementioned software will make the files in its "public" folder available to devices that tries to connect to the PC with everything right. To connect to the PC successfully, you need two things :
* the IP adress of the PC (think as an telephone number), which is something like 43.54.184.232 (four numbers between 0 and 255 with points inbetween)
* the "port" used by the software, a single number like 80
Problem is, there's a lot of IP adresses in your network. You have an IP adress for people outside your house, it's the "public" IP adress of your router.
Assuming that several devices at your house can connect to the internet at the same time, there's also an IP for EACH device in your house, including the router itself: the Wii U, the PC, sometimes your ethernet printer, your internet-clock, your DS, your blu-ray player or your fridge (if you have a very modern fridge ^_^) Most of the time, it's a 10.xxx.xxx.xxx or 192.168.xxx.xxx (those are IPs for local usage in your home)
Thus, you need to discover the IP of your PC. Launch a command windows, and type ipconfig and look for the xxx.xxx.xxx.xxx number on the "IPv4" line (I just hope you won't find two or three of them, that can happen...) The gateway line gives probably you your local router adress, btw.
Then, you can try putting "http://xxx.xxx.xxx.xxx" in your Wii U browser.
That will work IF THE PORT USED BY YOUR SOFTWARE ON PC IS 80. That's unfortunately not always the case, and maybe you'll have to read the documentation. Sometimes, it's 8080, and you need to type "http://xxx.xxx.xxx.xxx:8080"
I hope this help, but it's difficult to explain all the details of network managment in a couple of lines with simple explanations... That's the reason why they developped DNLA: to avoid people having to dig this kind of data. Unfortunately, even DNLA isn't always working easily.