简体   繁体   中英

.htaccess Sub Sub-Directory

I would like to know if it's possible to point my domain to a directory which is two folders in from the root.

My hosting company doesn't allow me to change this so I need to do this with an .htaccess file.

This is my structure...

public_html
    .htaccess    <-- Here will be my .htaccess file.
    folder
        folder
        folder
        folder
        public   <-- My desired folder.

All requests must point to the public folder 2 levels downwhere the frameworks .htaccess file exists and index.php file exists.

I hope this all makes sense.

Thanks.

Use RewriteBase

 RewriteEngine On
 RewriteBase /folder/public/
 RewriteRule . /folder/public/index.php [L]

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