I drive the site URL on LAN and redirects me to the XAMPP main page. In the settings of the Apache is not particularly understand. What is the problem?

Here is the contents of the Htaccess file.

 Options -MultiViews +FollowSymlinks -Indexes # # If mod_security is enabled, attempt to disable it. # - Note, this will work on the majority of hosts but on # MediaTemple, it is known to cause random Internal Server # errors. For MediaTemple, please remove the block below # <IfModule mod_security.c> # Turn off mod_security filtering. SecFilterEngine Off # The below probably isn't needed, but better safe than sorry. SecFilterScanPOST Off </IfModule> <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTPS} !on RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} #RewriteCond %{HTTP_HOST} !^dev.guestcrew.com$ [NC] #RewriteRule ^(.*)$ http://dev.guestcrew.com/$1 [L,R=301] # Some hosts require RewriteBase to make RewriteRules work. RewriteBase / # General Pages: RewriteRule ^contact-us.html$ contact.php [L,QSA,NC] RewriteRule ^landing/(guest-blogger|blog-owners|advertiser|all-about).html$ landings.php?type=$1 [L,QSA,NC] RewriteRule ^landing/advertiser-pro.html$ advertiser-pro.php [L,QSA,NC] RewriteRule ^google([^./]+).html$ google$1.html [L,QSA,NC] RewriteRule ^([^./]+).html$ pages.php?slug=$1 [L,QSA,NC] RewriteRule ^campaign/([0-9]+)-([^./]+) view.php?id=$1&title=$2 [L,QSA,NC] RewriteRule ^category/([0-9]+)-([^./]+)/$ filter.php?category=$1&title=$2 [L,QSA,NC] RewriteRule ^campaign-embed/([0-9]+)-([^./]+)/$ view.php?id=$1&title=$2&embed=true [L,QSA,NC] </IfModule> <IfModule mod_deflate.c> AddOutputFilterByType DEFLATE application/javascript text/css text/html text/xml </IfModule> 
  • please specify what exactly you are doing, what you expect, and what you get as a result. - aleksandr barakin
  • I want to go to the index.php file and I can’t, I’m throwing me on a Xampp dashboard. I’ve created a virtual host for this site, but if I contact it through a local host, then everything is fine if I create a virtual one. the host then this problem appears! - quaresma89
  • Please state in the question what address you enter in the address bar of your browser, what exactly you expect as a result (including the address bar), and what you get (including the address bar). - aleksandr barakin
  • I drive in the address - guest / I get - guest / dashboard but I have to go to index.php - quaresma89
  • As you can see, there is no mention of the word dashboard in the file you provided. This means that such redirection is most likely performed either in the http server settings, or in the code executed by the site scripts. - aleksandr barakin

0