2

I can access my webpages with "www.dom.com/mypage" which will redirect to "www.dom.com/mypage/". "www.dom.com/mypage/index.php" is the main file but I want to remove this from the url so if you type this in it will redirect you to "www.dom.com/mypage/".

All links display the right page but i want to remove it from the URL.

1 Answers1

1

You need something like

location /index.php {
   rewrite ^/index\.php(.*)$ /mypage/$1 redirect;
}

You might want to look at rewrites and location

Christopher Perrin
  • 4,811
  • 19
  • 33