View .htaccess
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
# if mod_xyz is not enabled... | |
<IfModule !mod_xyz.c> | |
# ...turn on the rewrite engine... (we suppose it's already enabled) | |
RewriteEngine On | |
# ...and redirect to google.com if calling <your_project_root> | |
RewriteRule ^(.*)$ http://www.google.com/ [R=301] | |
</IfModule> | |
# --> if the module is not enabled, you should be redirected to google |
View hide-text-class.css
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
.hide-text { | |
text-indent: 100%; | |
white-space: nowrap; | |
overflow: hidden; | |
} |