简体   繁体   中英

.htaccess redirect from root to html saving all links

I have a localhost/news_back url (My php script is here) And I have a localhost/news_back/client/admin.html I need to redirect every user, coming to my host to admin.html . It means that user must see in his adress bar this:

http://localhost/news_back/client/admin.html

It also means, that all scripts and img sources in my html must work correctly. And all my POST and GET requests must save their urls.

Everything I've tried changes paths or leads to errors.

Try this. may help you....

RewriteEngine on
RewriteCond %{REQUEST_URI} ^/$
RewriteRule (.*) http://localhost/news_back/client/admin.html [R=301,L]

Ok, guys, thanks for your advices, but my hosting provider has offered a solution, this helped! RewriteEngine on RewriteCond %{HTTP_HOST} ^[mydomain].com$ [OR] RewriteCond %{HTTP_HOST} ^www.[mydomain].com$ RewriteRule ^$ http://aranews.blogjist.com/client/admin.html [R=301,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