START WITH:
php and getcomposer Continue reading Laravel on IIS
Tag: hosting
web.config rules for everything
Don’t forget the basics:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Redirect to HTTPS" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="^OFF$" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Continue reading web.config rules for everything Shop until you drop!
Like my Widget Holder?
Buy one now from one of these shops…
http://prestashop.mybrain.info/
http://magento.mybrain.info/
http://opencart.mybrain.info/
woff mime-type
Remember the custom fonts post?
Don’t forget to set the correct mime-type on your webserver:
woff – application/font-woff
woff2 – application/font-woff
Otherwise the font-file will not load…
Domain Names = Real Estate
Like your office or your house; Your domain name is the address where people can find you. Like real estate, not all addresses are available, and some addresses are more expensive than others.
It used to be easy: You registered a .com for international business, .org for organisations, or .nl if you only operate in the Netherlands, plus Continue reading Domain Names = Real Estate