Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new to rewriting urls and wanted to know how i would rewrite

From this /profile/4

To this /profile.php?id=4

I have this rule so far

RewriteRule ^profile/([0-9]+)/?$ profile.php?id=$1

but it displays this in the browser

Firefox has detected that the server is redirecting the request for this address in a way that will never complete.

It displays /profile/4/index.php in the browser address bar which is incorrect.

.htaccess file

<Files .htaccess>
order allow,deny
deny from all
</Files>

Options +FollowSymlinks
RewriteEngine on
#ErrorDocument 404 /test.php
DirectoryIndex test.php
RewriteRule settings editProfile.php
RewriteRule update update.php
RewriteRule home test.php
RewriteRule ^profile/([0-9]+)/?$ profile.php?id=$1
share|improve this question
1  
Can you post your entire .htaccess file? – Mitch Grande Nov 1 '11 at 15:52
Why would you need the entire .htaccess file? mod_rewrite is enabled and i am able to write other urls just not the one above. – unleashed Nov 1 '11 at 16:00
2  
@unleashed Because Apache will use your entire .htaccess file. – Álvaro G. Vicario Nov 1 '11 at 16:47

2 Answers

up vote 4 down vote accepted

You are pretty much there. Try using this instead

RewriteRule ^profile/(.*)$ profile.php?id=$1

I found this good free resource online to help you test your rewrite rules before you post them to your live site. This may help for the future. It looks like your rule should work as you have it posted though. The problem must be somewhere else.

share|improve this answer
1  
+1 for the link – Peter Nov 1 '11 at 16:47
Thanks for the link :) – unleashed Nov 1 '11 at 17:10

Your rule is just fine so there's a redirection somewhere conflicting with it. I suppose that you don't have a real directory at /profile/4 so they main candidate left is mod_negotiation. Try this:

Options -MultiViews
share|improve this answer
This helped the problem thanks, although now all the css styles and images are gone. I think it may be effecting them during rewrite. – unleashed Nov 1 '11 at 17:10
2  
That's an entirely different issue. You're probably using relative paths and you've just changed the URL of the document. – Álvaro G. Vicario Nov 1 '11 at 17:12
No worries, fixed that issue :) – unleashed Nov 1 '11 at 17:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.