1
vote
1answer
24 views

Implement friendly URLs with product name

I'm currently working on an e-commerce site with the following URL format for individual products: examplesite.com/shop.php?sec=prod&prod=373 Where 373 is an individual product number. I would ...
0
votes
1answer
30 views

Will a URL Rewrite for a SEO Friendly URL affect SEO Page Rankings? [closed]

Our website is about to undergo a major re-branding effort, including domain name change. We know to maintain rankings, we will have to do 301 redirects from the old domain to the new one. But on top ...
0
votes
0answers
8 views

Using rewrite URL's in subdomain not work

At the moment, I have this code in the file .htaccess RewriteCond %{HTTP_HOST} ^domain\.com [NC] RewriteRule ^(.*)$ http://www.domain.com%{REQUEST_URI} [r=301,NC,NE] I want, you can use the url's ...
1
vote
1answer
32 views

mod_rewrite: transform = and & in slashes

I was just looking for a solution to transform any =,?,& found in a query string into a simple slash /. To be more specific, my link is something like: ...
1
vote
1answer
115 views

timthumb.php friendly URL with .htaccess

timthumb.php is a resizing/cropping php script, used in thousands of websites, I'm using it in my wordpress blog, and I'm facing a issue. I use a plugin that changes the wordpress default's paths for ...
0
votes
1answer
88 views

Friendly URLs cakephp 2.3

I'm new using cakephp, and I'm trying to set Friendly URLs for my site, but I'm having problems. I've already made all the steps that the cakephp 2.3 Book says, and my apache configuration says that ...
1
vote
2answers
80 views

how to lighttpd redirect with querystring

Following url is working fine: http://www.domain.com/address but when I pass any querystring like: http://www.domain.com/address?back=order-opc.php?step=1 It shows 404 page my rewrite: ...
1
vote
1answer
144 views

.htaccess RewriteRule not working, need to generate a URL friendly

I have this dynamic link: http://www.nortedigital.mx/article.php?id=36175&t=dobla_las_manos_el_snte__avala_reforma_educativa and I need to convert in URL friendly like this: ...
0
votes
0answers
78 views

iis7 url rewrite friendly url

I'm trying to do an url rewrite for dynamic pages in the admin section of my website, but nothing is changes when I upload the web.congif file. Also, I would like for the web.config file to be in ...
0
votes
1answer
56 views

Apache mod_rewrite: remove only a specific folder from the url and remove the extension from all the files inside that folder

I've tried some different solutions I've found on the web on my .htaccess file (placed in the root of my website), but I always end up with an "Internal Server Error"... I need a generic rule to ...
0
votes
1answer
116 views

Static (seo friendly) to dynamic url rewrite

Here is my problem... I have a to redirect a link like this: site.com/virtualfolder/some-seo-friendly-keywork to site.com/folder/page.php?id=some-seo-friendly-keyword In ...
4
votes
2answers
233 views

Friendly URL in liferay 6.1

I have just changed the url of blogs(default) portlet to "http://localhost:8080/web/standorman/blogs/-/blogs/application-development-in-liferay" But i want to it to be ...
0
votes
0answers
22 views

mod_rewrite is not immediately serving up files

I have the following htaccess file which is used for friendly URLs on a CMS website. <IfModule mod_rewrite.c> RewriteEngine On RewriteBase '/' RewriteCond %{REQUEST_FILENAME} !-f RewriteCond ...
0
votes
1answer
94 views

Url Rewrite Regex

I am having trouble with a pesky URL rewrite, the URL ~/global/products/en/page?sdfsdf=sgdfg works perfectly without the query string but wont work with it. Can anybody help? The mobile site ...
0
votes
0answers
187 views

User Friendly URL Rewrite Rules with IIS 7.5

Trying to figure out some regex for friendly urls. The page would normally take something like http://www.website.com/news/articlelist.php?year=2012&month=10&day=30 and it want to also be ...
0
votes
1answer
42 views

Pretty Urls with Mod_Rewrite

I would like to rewrite the following URL string from: product.php?category=abstract_and_patterns&page=1 To: abstract-and-patterns Now it's important to note that both the category and page ...
0
votes
0answers
30 views

Mod_Rewrite Rules

I'm currently developing a new template and system using PHP and MySQL that essentially circumvents a current shopping cart system built with PERL and Smarty Templates. My system accesses the database ...
0
votes
1answer
69 views

Will rewriting my URLs into “Pretty URLs” cause any 404 errors?

Good day! I have a question regarding removing file extensions from URLs. If I were to use the following rule to remove the .php extension from my website URLs, would any prior links to any of the ...
0
votes
3answers
193 views

Url rewriting mod_rewrite with and without query string

I'm trying to rewrite from domain.com/page/soft-15/android-26/ to page.php?cat=15&os=26 with this code: RewriteRule ^page/([0-9]+)\-([a-zA-Z0-9-]*)/([0-9]+)\-([a-zA-Z0-9-]*)$ ...
1
vote
1answer
200 views

Wordpress permalinks only for posts

I would like to use wordpress permalinks but only for posts. Is there any way to do that? I don't care about seo, my website is about niche subject so it already has first position in google. Also ...
1
vote
1answer
73 views

Mobile Version Rendered By A Different PHP File Preserving Friendly URL's

I have a website about books. Currently, it already has some URL Rewrite rules on my .htaccess file, so that such URL's are more friendly: http://www.example.com/book.php?book=xxx -> ...
0
votes
1answer
192 views

htaccess url rewrite many links and protect css and js files

I want to rewrite my links but with multi styles here is i want i want to be look like Info cms is my Rewrite Base Cats style http://www.site.com/catname Post Style ...
-1
votes
2answers
69 views

Benefit of blog.something.com VS something.com/blog [closed]

E.g. stackoverflow.com and freelancer.com are using the url with blog.stackoverflow.com and blog.freelancer.com However, websites like oDesk.com and elance.com are using this: odesk.com/blog and ...
0
votes
1answer
140 views

Need silent rewrite URL in Apache

I'm running tomcat behind apache. now my need is to apply friendly url by removing parameters names from URL. i want http://<domainname>/<APPLICATION>/QWERTY these internally should ...
3
votes
1answer
251 views

Basic html-mapping or url-rewriting for google appengine (python)

I'm trying to rewrite urls for a static site on Google Appengine. I only want http://www.abc.com/about for http://www.abc.com/about.html I don't need rewriting for stuff like abc.com/page?=1 or ...
1
vote
2answers
167 views

Converting parameter based URL's to pretty URL's

Currently I have url's in this format: http://www.domain.com/members/username/ This is fine. However each user may have several 'songs' associated with their account. The url's for the individual ...
0
votes
1answer
80 views

URL rewrite rule causing havoc

The first rewrite rule (below), "Rewrite to readable URL", works perfectly. The second rule, "Remove WWW prefix", removes the WWW prefix from the URL, so this: http://www.mydomain.com/blog... ...
5
votes
4answers
678 views

User friendly URLs - mod rewrite and php redirections

So far I've done this: RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?load=$1 [QSA,L] Then on my index page (in the root ...
0
votes
1answer
87 views

Rewrite many URL parameters to more “readable” format

Context: An events system with many (optional) search parameters. Whilst this is partly a UX question, I feel this still belongs on SO. A plain URL might look like: ...
2
votes
1answer
360 views

.htaccess mod-rewrite conditional statements and sending GET request?

Not necessarily a problem, just something that I am not yet knowledgeable enough to do. I have an .htaccess file that I am using for url rewriting. This is what I have now. ErrorDocument 404 ...
1
vote
1answer
70 views

can you help me simplify this RewriteRule?

Like most coders I like to take the shortest and most simple route when coding something, and mod_rewrites are no exception. I was just wondering if there is anyway to simplify this code so that I can ...
0
votes
1answer
868 views

URL Rewrite in PHP like in Smarty Template [closed]

I am banging my head from a couple of days to use the URL rewriting for a core php website. Previously the website was developed using smarty, but due to some limitations, I am redoing it in core PHP. ...
3
votes
1answer
111 views

Origins of “pretty url”?

This seems to be an official way to refer to it, as it's even got a redirect on Wikipedia and some of Google's ajax crawling documentation calls it a pretty url as well. Heck, SO has 44 questions ...
1
vote
2answers
4k views

URL rewrite in tomcat web.xml

I would like to automatically redirect requests for http://mysite.com to http://mysite.com/SomePage I am able to do that with Apache with the following rule: RewriteRule ^/$ /SomePage [R] However, ...
1
vote
1answer
930 views

remove application name from URL

my site uses JSF and the url appears to be, http://mysitename.com/wompower6/faces/home.xhtml I am using prettyfaces, so if I use the following in pretty-config.xml, i can change the name to ...
0
votes
1answer
2k views

.htaccess & 301: Redirect URL with capital letters to same URL but in lowercase

1) I got mysite.com/about-me.php. When I type in mysite.com/About-me.php I get a 404 error. I'd like to add some magic to my .htaccess so that mysite.com/My-PaGe.php (etc) redirects the user by 301, ...
0
votes
1answer
142 views

.htaccess grab whole path

i'm experimenting with a method for pretty urls i haven't tried before where htaccess just grans the whole path after the root and passes it as a single variable, then i will break it up into specific ...
0
votes
1answer
34 views

htaccess problem

I have one short, but to me very important question! I want this (using an .htaccess file): http://localhost/riteh/view/buildings.php?p=1&r=10 to look like: ...
0
votes
1answer
339 views

Dynamic page based on querystring with friendly urls

Essentially what I want to do is have a few pages that act as templates for data. If a url is www.site.com/home, I want to query a friendly url field for "/home" which would return pageurl ...
3
votes
1answer
7k views

Mode Rewrite; with/without trailing slash on end of url?

I bascially tried this mode_rewrite rule below. It works with a slash on the end but i want it to work whether it has a trailing slash on the end or not. Basically i want it like this as some people ...
2
votes
8answers
454 views

What is a good way to have a SEO URL system built up in PHP?

I want to have "pretty" and SEO oriented URLs in my site. I've build up my own tiny framework for this site and almost everything is complete now. One thing I'm still puzzled up is the pretty/SEO ...
2
votes
4answers
2k views

Clean URLs using jsp/ servlets?

I am planning to make a CMS using jsp and servlets. Could anyone tell me how to implement clean urls using this technologies?
1
vote
1answer
198 views

Friendly URLs with .htacces weird response form my web hosting… HELP

I just wanted that when this is inserted in the URL: http://website.com/pelicula/0221889/ http://website.com/pelicula/0221889/posters/ It really goes to this (in background): ...
0
votes
1answer
336 views

Friendly URLs with .htacces NOT working… and stackoverflow URLs style

I know this question has been asked a million of times here at stackoverflow, but I cant get it to work so I need someone who knows to finally resolve this problem! I want that when this is inserted ...
0
votes
2answers
344 views

URL structure preference - to slash or not to slash?

I'm using custom post types in WordPress 3.0 to manage 'courses' (or seminars, lectures, whatever term you'd prefer to have in mind). Now for viewing a single 'course', the url structure is; ...
0
votes
2answers
4k views

Htaccess rewrite rule .aspx to .php

Background: I have a website that has been built with ASP.NET 2.0 and is on Windows hosting. I now have to rewrite my site in PHP and move it into Linux hosting. I have a lot of incoming links to my ...
1
vote
2answers
49 views

HtAccess Rewrite Needed

My host will not allow me to change the default folder of my primary domain. I have managed to Rewrite http://www.mysite.com to the real folder public_html/mysite.com/www/ with the following ...
0
votes
1answer
244 views

Reject (Hard 404) ASP.NET MVC-style URLs

ASP.NET MVC web app that exposes "friendly" URLs: http://somesite.com/friendlyurl ...which are rewritten (not redirected) to ASP.NET MVC-style URLs under the hood: ...
0
votes
2answers
125 views

rewriting single url help

I'm trying to rewrite the following url: index.php?route=checkout/cart to /cart using: RewriteRule ^index.php?route=checkout/cart$ /basket [L] However it doesn't seem to work. Anyone know ...
0
votes
1answer
31 views

Needing some mod_rewrite help

I have a php script that takes in five variables from the url string like this: /dimg.php?s=250x250&tc=0-0-0&bc=204-204-204&type=jpg&t=blahText The only required variable is s. The ...

1 2