This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<article class="earth-demo"> | |
<div class="earth"> | |
<div class="more-info"> | |
<h1>Earth</h1> | |
<ul> | |
<li>Third planet from the Sun</li> | |
<li>Atmosphere: 21% oxygen</li> | |
<li>Liquid water on surface</li> | |
<li>Only planet that has life (that we know of)</li> | |
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This tag loads the rewrite module | |
<IfModule mod_rewrite.c> | |
# enable the rewrite engine | |
RewriteEngine On | |
# Set your root directory | |
RewriteBase / | |
# Remove the .html extension | |
RewriteCond %{THE_REQUEST} ^GET\ (.*)\.html\ HTTP | |
RewriteRule (.*)\.html$ $1 [R=301] |