简体   繁体   中英

How to run different website in a same domain with HTTP and HTTPS

Can i run different websites in same domain. like

http://www.example.com ----> in WordPress
https://example.com/ -----> in laravel

Here is the reference site

Website : www.linqs.in              
APP:    https://linqs.in/username

App url will open user's profile by provided username.

sorry if i made mistake !! if this possible please guide me.

由于URL侦听端口,例如http-端口80,https-端口443。因此,您可以通过VirtualHost configure确保同一域中的其他网站。

You can do this in your virtual host configuration :

Listen 80
Listen 443

<VirtualHost *:80>
    ServerName example.com
    DocumentRoot "/path/to/wordpress"
</VirtualHost>

<VirtualHost *:443>
    ServerName example.com
    DocumentRoot "/path/to/laravel/public"
</VirtualHost>

You may also need to define directories if the sources are not under your default http root. For example:

<VirtualHost *:443>
    ServerName example.com
    DocumentRoot "/path/to/laravel"
    <Directory /path/to/laravel>
          AllowOverride All
    </Directory>
</VirtualHost>

This will also allow Apache to serve that directory and use any .htaccess files (if it wasn't allowed already).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM