Notes‎ > ‎

htaccess

The gadget spec URL could not be found
The gadget spec URL could not be found

Remove www prefix

RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

Support clean URLs

# If the request is for a file that exists already on the server, index.php isn't served. 
RewriteCond %{REQUEST_FILENAME} !-f

# If the request is for a real directory (one that exists on the server), index.php isn't served.
RewriteCond %{REQUEST_FILENAME} !-d

# All other requests are sent to index.php
RewriteRule ^(.*) index.php

Comments