XF 2.0 error on local test site

arnold

Member
Hello,

I made a copy of my life site to a local xamp enviroment.
now when i try to load the site i get a strainge error.

when i enter localhost:8888/forums/ it should load the site.
but i get this error
The requested URL /Users/ageurtse/Projects/Nieuw forum/forums/localhost:8888/forums/ was not found on this server.

what could be wrong.

this is my .htacces file
Code:
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^(data|js|styles|install) - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
 
Top Bottom