如何使.html显示为.htaccess中的/

时间:2016-03-09 06:01:42

标签: html apache .htaccess directory muse

我的问题是这个, 我想要例如:

制作www.mywebsite.com/index.html 像这样看/出现(不是重定向) www.mywebsite.com/index /

到目前为止,我使用了以下代码,只获得了www.mywebsite.com/index的外观。 我会强调我不想重定向,我只希望html看起来像文件夹

我在Adobe MUSE工作。我建立网站主要是为了好玩,只想专注于设计而不是编码

以下是我的.htaccess脚本:.htaccess rewrite /foo/bar/ to /foo/bar.php

拜托,有人可以帮帮我吗? 我应该更改哪些行以使文件夹具有外观 感谢

Options  -MultiViews 

RewriteEngine On
RewriteBase /

# To externally redirect /dir/foo.php to /dir/foo
RewriteCond %{THE_REQUEST} ^[A-Za-z]{3,}\s([^.]+)\.html [NC]
RewriteRule ^ %1 [R,L]

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{DOCUMENT_ROOT}/$1\.html -f
RewriteRule ^(.+?)/?$ $1.html [L]

0 个答案:

没有答案