View Single Post
ישן 26-11-12, 20:18   # 2
Mati Menkes
עסק רשום [?]
 
Mati Menkes's Avatar
 
מיני פרופיל
תאריך הצטרפות: May 2008
גיל: 30
הודעות: 835
שלח הודעה באמצעות MSN אל Mati Menkes Send a message via Skype™ to Mati Menkes

Mati Menkes לא מחובר  

תיצור קובץ בשם .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
__________________
Mati Menkes
CEO at Mind Way LTD


  Reply With Quote