תיצור קובץ בשם .htaccess ושהתוכן בו יהיה:
ציטוט:
# Turn on URL rewriting
RewriteEngine On
# Installation directory
# RewriteBase /test/
Options +FollowSymlinks
# Protect application and system files from being viewed
RewriteRule ^(application|modules|system) - [F,L]
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT,L]
#redirec
#detect urls without www
RewriteCond %{http_host} ^blabla.com [NC]
#redirect to www, does not work though
RewriteRule ^(.*)$ http://www.blabla.com/$1 [R=301,L]
AddHandler php5-script .php
|