我正在研究typo3 中的realurl,并花了几个小时来弄清楚为什么typo3 在url 中只显示一个片段。
站点结构如下所示:
我为子页面“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
在我的根页面上。我已经用完了解决方案。