简体   繁体   中英

Specify rewrite parameter in .htaccess

In my htaccess I think I must wrong path of RewriteBase.

My server has this structure:

/public_html/example

and in this example there are all my site so to go on my site I do this url:

http://home.com/example

But I get 500 internal server because I think I wrong my RewriteBase in my htacess:

# BEGIN WordPress

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /example/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /example/index.php [L]
</IfModule>


AuthBasicProvider file

AuthUserFile /public_html/festivalmusicasullacqua/.htpasswd.txt
AuthName "Authorization Form Title"
AuthType Basic

#Allow any valid user
require valid-user

#Allow only one user with specified username
require user festival

Anyone can help me to correct the code?

You have two parts in your .htaccess file: a rewrite part, and an auth part. I think that the error is not in the rewrite part, but in the auth part (you can try commenting it to confirm this hypothesis).

If I am right and the error is in the auth part, the reason is probably that FTP chroots you. Then you only see a relative filesystem path.

Thus I doubt that the AuthUserFile line has a correct path: you must specify an absolute path.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM