0

私はtypo3のrealurlに取り組んでいて、typo3がURLに1つのセグメントしか表示しない理由を理解するのに何時間も費やしました。

サイト構造は次のようになります。

ここに画像の説明を入力

サブページ「munchen-maistrasse」の URL は次のとおりです。

http://www.bernd-gruber.at/munchen-maistrasse/

私はそれが欲しい:

http://www.bernd-gruber.at/referenzen/munchen-maistrasse/

これは私のサーバー .htaccess ファイルです:

<FilesMatch "\.(js|css)$">
  <IfModule mod_expires.c>
    ExpiresActive on
    ExpiresDefault "access plus 7 days"
  </IfModule>
  FileETag MTime Size
</FilesMatch>

<IfModule mod_rewrite.c>

RewriteEngine On
RewriteBase /
RewriteRule ^(.+)\.(\d+)\.(php|js|css|png|jpg|gif|gzip)$ $1.$3 [L]
RewriteRule ^(typo3/|t3lib/|fileadmin/|typo3conf/|typo3temp/|uploads/|favicon\.ico) - [L]
RewriteRule ^typo3$ typo3/index_re.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php [L]

</IfModule>

AddType video/x-m4v .m4v
AddType video/ogg .ogv
AddType video/webm .webm
AddType video/x-m4v .m4v
AddType application/ogg .ogg 

私が使用するタイポスクリプトでは config.baseURL を使用しません。

config.absRefPrefix = /
config.prefixLocalAnchors = all

私のルートページに。私は解決策を使い果たしました。

4

1 に答える 1