从普通的html页面创建漂亮的URL?

时间:2013-06-19 20:33:41

标签: .htaccess friendly-url clean-urls pretty-urls

我查看了几篇关于设置“漂亮网址”的文章,我似乎无法为我工作。我是整个.htaccess过程的新手,看起来我所看到的一切都是针对动态的.PHP网站。以下是我希望看到的情况:

丑陋的网址:http://www.example.com/test.html
漂亮网址:http://www.example.com/test/

目前尝试在.htaccess文件中使用的是:

Options +FollowSymLinks
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^([a-z]+)$ $1.html
到目前为止,我没有运气。我没有在页面上使用任何形式的.php - 这些是静态.html页面。任何帮助将非常感激。谢谢!

1 个答案:

答案 0 :(得分:3)

没关系。我弄清楚是什么问题。我的编译器损坏了.htaccess文件,该文件在加载时触发了站点范围的错误消息。你可以看到它现在在这里工作:

http://www.igeniusstore.com/this-test.html

http://www.igeniusstore.com/this-test

以下是我使用的基本代码:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html

感谢您的所有帮助。干杯!