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>