Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
2k views

Cakephp 1.3 url rewriting

I have my cakephp 1.3 console installed on hostgator server using SSH. I baked an app and everything seems to be working fine, but when I go to the app http://www.domain.com/app everything is green ...
1
vote
2answers
234 views

URL Beautification using .htaccess

in search of a more userfriendly URL, how do i achieve both of the following, elegantly using only .htaccess? /de/somepage going to /somepage?ln=de /zh-CN/somepage#7 going to /somepage?ln=zh-CN#7 ...
1
vote
2answers
198 views

Changing the URL and not reloading a page (this time without a url fragment)

Just wondering as to how did Google code this website without it reloading the website when the page AND url are changed. Take a look and go from page to page. http://www.20thingsilearned.com/ I've ...
1
vote
4answers
79 views

Least resource-intensive way to set up 4 'pretty' URLs?

I'm planning an API for my own use, in Python. Perhaps someday I will make it freely accessible, but now I'm only planning to use it on my hobby site. At this stage I need some advice on how to set up ...
1
vote
2answers
159 views

Managing URL Redirects when you Modify Pretty URLs - Best Practices

What are the standards for managing URL redirects if you base your URL's off properties of the data that might change a few times, like the "title"? I have a website with lots of images and I want to ...
0
votes
1answer
16 views

How do I map path components into query parameters using mod_rewrite?

How would I change this: http://www.mattvisk.com/?page=portfolio&item=rae$number=0 To this: http://www.mattvisk.com/portfolio/rae
0
votes
0answers
21 views

“Pretty Links” work but don't stay in the user's address bar

I found this code snippet which I have added to the bottom of my .htaccess file in the root of my website: Options +FollowSymlinks RewriteEngine on RewriteRule ^products/([^/]+)/([^/]+).html ...
0
votes
2answers
71 views

How to redirect - rewriten urls to short urls

I have changed my site url structure. But, Google indexed urls are giving 404 not found error. Now, I need a .htaccess rewrite rule for, From url: www.mydomain.com/topic-titles-here-t273.html To ...
-1
votes
5answers
408 views

PHP minus symbol in URL (rawurlencode vs urlencode)

I've tried using rawurlencode and urlencode, both give me "&" and the other "+". What i'm asking is, is there a PHP function that puts "-" in between words, like on Stack Overflow? Thanks