Apache error "AliasMatch not resolved here"

I get this error if I add this line to the .htaccess file:

AliasMatch ^/image/(.*)$ /ftp/pub/image/$1

and

Alias /image/ /ftp/pub/image/

creates an error of the same type

Why ?: (

+4
source share
1 answer

Error error says it all.

According to official Apache docs AliasMatch and Aliasnot allowed in.htaccess

You need to put them in your Apache configuration.

+10
source

All Articles