I try to find a way to redirect; http://mydomain.com/mysite/index.php to http://mysite.mydomain.com/index.php using this directive in nginx .vhosts; server { listen :80; server _name mydomain.com www.mydomain.com; root /var/www/mydomain.com/web; location /mysite { rewrite ^/mysite(.) http://mysite.mydomain.com/index.php/ permanent ; }
it is not working well when called; mydomain.com/mysite/index.php but works well when called without the .php Any idea please,
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Hi!
You must create redirection to the next virtualhost as they are two different requests
hope you can help