I'm converting my mediawiki site to use nginx as a frontend for static files with apache on the backend for php. I've gotten everything working so far except for when I view the root directory "example.com" it tries to serve a directory listing and gives a 403 error since I have that disabled and don't have an index file there.
The apache rewrite rule I have in place right now is simply:
RewriteRule ^$ /wiki/Main_Page [L]
I tried something similar with a location directive in nginx, but it's not working:
location = / { rewrite "^$" /wiki/Main_Page; }
The rest of my location directives are:
location / { try_files $uri $uri/ @rewrite; } location @rewrite { rewrite ^/wiki/(.*)$ /w/index.php?title=$1&$args; } location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ { try_files $uri /w/index.php?title=$1&$args; expires max; log_not_found off; } location ~ \.php?$ { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $remote_addr; proxy_set_header Host $host; proxy_pass http://127.0.0.1:8080; }
I can simply put an index.php file with header('Location:') in it, but I'd rather just do it properly with a rewrite rule.
All the examples I've found online for running mediawiki with nginx run the wiki as wiki.example.com instead of a /wiki/ subdirectory.
Edit: I also tried adding to the try_files like this: try_files $uri $uri/ @rewrite /wiki/Main_Page;
with the same 403 error result.
The syntax of rewrite directive is: rewrite regex replacement-url [flag]; regex: The PCRE based regular expression that will be used to match against incoming request URI. replacement-url: If the regular expression matches against the requested URI then the replacement string is used to change the requested URI.
Permanent redirects such as NGINX 301 Redirect simply makes the browser forget the old address entirely and prevents it from attempting to access that address anymore. These redirects are very useful if your content has been permanently moved to a new location, like when you change domain names or servers.
I found help in the nginx irc chat.
Basically what I needed to do was use a return instead of rewrite. So I changed this:
location = / { rewrite "^$" /wiki/Main_Page; }
to this:
location = / { return 301 http://www.example.com/wiki/Main_Page; }
I prefer to use:
location = / { return 301 http://$host/wiki/Main_Page; }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With