lundi 16 juillet 2018

Virtual Hosts Laravel - I need URL addres with name of my aplication

I made a virtual host on the remote server and it works, but I would like to include the name of the app in the url address...

example: 10.10.20.30 - work, the homepage of the app opens, but 10.10.20.30/e-lab don't work...

These are my files for a virtual host:

httpd-vhost.conf

<VirtualHost *:80>

DocumentRoot "C:/xampp/htdocs/e-lab/public"
ServerName e-lab.test

<Directory "C:/xampp/htdocs/e-lab/public">
    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride All
    Order allow,deny
    Allow from all
       Require all granted
</Directory>

hosts

 127.0.0.1          localhost
 127.0.0.1          e-lab.test

and htaccess

<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
    Options -MultiViews
</IfModule>

RewriteEngine On

# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ / [L,R=301]

# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

Thanks! ;)



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire