【发布时间】:2011-05-26 12:33:02
【问题描述】:
我正在尝试使用 .htaccess 将文件结尾 (.kml) 添加到 url,但它不起作用
网址是http://resihop.nu/kml 我希望它是 http://resihop.nu/kml.kml 这是我尝试过的:
重写规则 ^kml.kml$ kml
这是我的完整 .htacess:
# Turn on URL rewriting
RewriteEngine On
# Installation directory
RewriteBase /
# Protect hidden files from being viewed
<Files .*>
Order Deny,Allow
Deny From All
</Files>
# Protect application and system files from being viewed
RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L]
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT]
RewriteRule ^kml\.kml$ kml
【问题讨论】: