Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は現在 Prestashop を学んでいます。最初の障害に遭遇しました。Prestashop をインストールした後、デフォルトのショップ テーマ ファイルが読み込まれません。何か案は?
前もって感謝します。
私はすでに私の質問に対する解決策を見つけました。
サーバー プロバイダーがFilesMatch .htaccess コマンドをサポートしていないことがわかりました。それを解決するために、次のように /themes と /modules ディレクトリの両方で .htaccess ファイルを変更する必要がありました:
<FilesMatch "\.tpl$"> Deny from all </FilesMatch>
に:
<Files ~ "\.tpl$"> Deny from all </Files>