-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rewrite Engine Error #711
Comments
You missed step 2 |
This is my .htaccess file. Can you help me to fix this. # Apache# LoadModule rewrite_module modules/mod_rewrite.so# AllowOverride AllRewriteEngine On RewriteCond $1 !^(.well-known)RewriteRule ^(.*) index.php?/$1 [L] ###----------------------------------- nginxrewrite ^/(?!.well-known)(.*)$ /index.php?/$1 last;nginx Subdirectory 在子目录中使用location /OneManager2/ {rewrite ^/(.*)$ /OneManager2/index.php?/$1 last;}caddyrewrite {to index.php?/$1}caddy2 Caddyfile@try_files {not path /.well-known/*file {try_files index.php}}rewrite @try_files {http.matchers.file.relative}###----------------------------------- |
If your web server is not Apache, you should manually change the configuration file of your web server. The configuration methods of different web servers are different. you should copy the content corresponding with your web server and add it to the configuration file (like nginx.conf in nginx or Caddyfile in Caddy ... )of your web server. |
As you can see in this picture it's shows like this. What should I do?
The text was updated successfully, but these errors were encountered: