2016-04-28 13 views

Antwort

2

Versuchen Sie Folgendes in der .htaccess Datei

RewriteEngine On 
RewriteRule ^shop/([^/.]+)/([^/.]+)?$ shop/index.php?shopid=$1&item=$2 [L,NC] 

Hoffe, dass es funktioniert.

0

Diese Option befindet sich in Ihrer httpd.conf-Datei.

Änderung aus

<Directory /var/www/> 
     Options Indexes FollowSymLinks 
     AllowOverride None 
     Require all granted 
</Directory> 

zu

<Directory /var/www/> 
     Options Indexes FollowSymLinks 
     AllowOverride All 
     Require all granted 
</Directory>