문제

I have wordpress installed at /demo/wp I want it to be fetched when I het

example.com

or www.example.com

how can I do it? I don't know .htaccess

any help is appreciated...

thanks

도움이 되었습니까?

해결책

Its actually pretty simple.

RewriteEngine on
RewriteCond %{HTTP_HOST} ^webmonopolist\.com$
RewriteRule (.*) http://www.webmonopolist.com/$1 [R=301,L]
RewriteRule ^$ demo/wp [L]

This should get the desired effect. You just need to change the domain name.

Full explanation HERE

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top