Some help with basic .htacces

medina

x10 Addict
Community Support
Messages
1,809
Reaction score
6
Points
38
Hey everybody!Im trying to use the friendly URL on my website, and have some troubles with te htaccesI want to convert this www.alejandrom.com/index.php?id=contacto to this www.alejandrom.com/contactoIm using this :
RewriteEngine On
RewriteRule ^([^/d]+)/?$ index.php?id=$1 [QSA]


but doesn't work, and also can convert de index.php?id=contacto to just ?id=contacto but is not the think that i want..Obviously i dont want to do this with one page, i mean want to convert index?id=ANYPAGE to alejandrom/ANYPAGE Sorry for my bad English.
 

tanwirec

Member
Messages
34
Reaction score
1
Points
8
Hi,
It had something to do with the script you are using. Try this code:

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

Hope that helped ^_^
 

medina

x10 Addict
Community Support
Messages
1,809
Reaction score
6
Points
38
Hi,
It had something to do with the script you are using. Try this code:

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

Hope that helped ^_^
Thanks you you your fast reply!!..Still not working!...
 

tanwirec

Member
Messages
34
Reaction score
1
Points
8
Hi,
I recommend submitting a support ticket. If they don't help, someone with more .htaccess knowledge should help ;P
 
Top