Hello cPanelDon
I use this according your post :
Code:
<Directory "/home">
Options -ExecCGI -FollowSymLinks Includes IncludesNOEXEC Indexes -MultiViews SymLinksIfOwnerMatch
AllowOverride Options=Includes,IncludesNOEXEC,Indexes,MultiViews,SymLinksIfOwnerMatch
</Directory>
But about all sites on the server are dealing with Error 500
some .htaccess that make Error 500 after doing this change and restart apache:
.htaccess1:
Code:
#IndexIgnore *
AddDefaultCharset utf-8
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/x-javascript
RewriteEngine on
RewriteRule ^buy-sell.php ?page=buy-sell [nc]
RewriteRule ^contact.php ?page=contact [nc]
RewriteRule ^aboutus.php ?page=aboutus [nc]
.htaccess2:
Code:
RewriteEngine on
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName sitename.tld
AuthUserFile /home/user/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/user/public_html/_vti_pvt/service.grp
RewriteCond %{HTTP_HOST} ^.*$
RewriteRule ^/?$ "http\:\/\/sitename\.com" [R=301,L]
.
.
.
Please help me.
Thank you