1-shoes-shopping.com - Babb Fest - Flights - Xbox Mod Chip - Credit Report

PDA

View Full Version : Need some help... mod_rewrite


teknoledge
Aug 9th 2006, 5:42 pm
I've setup .htaccess file with this:
RewriteEngine On

Options +FollowSymlinks

RewriteRule ^(.*)/$ script.php?u=$1
I want to be able to access the URL with both:
http://domain/something
http://domain/something/

So far http://domain/something/ is working but I'm unable to put to work also http://domain/something. Can anyone help?

Thanks!

Nintendo
Aug 9th 2006, 6:11 pm
RewriteEngine On
Options +FollowSymlinks
RewriteRule ^(.*)$ script.php?u=$1 [L]

but it'll do every URL on the domain including index page.

teknoledge
Aug 9th 2006, 6:12 pm
I already tried that but it's not working properly. :(

virtualraceday
Aug 9th 2006, 8:23 pm
Hi teknoledge ;)

Try this:

RewriteRule ^([a-zA-Z0-9]+)/?$ script.php?u=$1

teknoledge
Aug 10th 2006, 7:32 am
Hi teknoledge ;)

Try this:

RewriteRule ^([a-zA-Z0-9]+)/?$ script.php?u=$1
Daichi my man! Works, thanks!