Xampp is not loading media
I duplicated my wordpress website from hosting to localhost using xampp. I copied the database and the web files as in the real web. The problem is that when I connect with the web in localhost the media is not being loaded.
Here is my htaccess
# BEGIN WordPress
IfModule mod_rewrite.c
RewriteEngine On
RewriteBase /testweb/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /testweb/index.php [L]
/IfModule
# END WordPress
Thanks in advance