Tagged Questions

5
votes
1answer
53 views

use .htaccess for friendly url

I've read many of the similar questions but have not been able to alter the url to an SEO friendly name. It's bizarre because I believe my requirement should be simple. So I'm going to be specific in ...
4
votes
3answers
199 views

Pretty URLs Vs. Duplicate Content

I'm trying to clear up a grey area about this much talked about topic... Like most devs, I've made some pretty URLs with mod_rewrite. My sites internal links point to the pretty URLs and things are ...
3
votes
3answers
575 views

How can I display SEO friendly URLs using mod_rewrite?

I am not a PHP developer at heart and I have been asked to perform some SEO on an existing PHP website. The first thing I noticed was the ugly URLs so I want to get these to rewrite to something more ...
2
votes
1answer
167 views

SEO friendly URL while using Timthumb

My website www.uksoccershop.com has been recently updated by my team to show image thumbnails using timthumb. This has been successfully done, but the issue of losing on SEO traffic from Google Images ...
2
votes
2answers
231 views

PHP Routing with multilingual support

I am currently creating a CMS on a framework. I have made my .htaccess file, which looks like this: <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond ...
1
vote
1answer
583 views

URL rewriting with PHP MySQL .htaccess & GET

I have a MySQL database with 5000 items. The table is structured as id product-name content product-url You can access a specific product page by going to www.site.com/products/index.php?id=123. ...
1
vote
3answers
509 views

SEO Friendly URL to Dynamic Arabic Category URL using PHP

Currently I have a url like this domain/index.php?cat=مال_وأعمال I want to set things up so that our Marketing people can publish url's like domain/مال_وأعمال I've tried several solutions ...
1
vote
2answers
690 views

SEO Friendly URL to Dynamic URL using PHP

Currently I have a url like this http://<client_name>.website.com/index.php?function_name&cat=32 I want to set things up so that our Marketing people can publish url's like ...
1
vote
1answer
254 views

More HtAccess Rewrite Rules

Greetings all, I need help combining some htaccess rewrites, these crazy regular expressions screw with my head. So I have a folder structure something like this: ...
0
votes
1answer
54 views

PHP Class OOP Based Apache Mod Rewrite System (Permalinks - Friendly URL's)

Now I have been scouring the web for what seems to be a mystery or maybe I am searching for the wrong things, but does anyone know of any good Object Oriented ways on managing "Pretty URLs' in PHP ...
0
votes
1answer
104 views

.htaccess and seo friendly search query string

I am really new to .htaccess. I was wondering how to create a complex seo friendly urls for the search string and selected filters. I'm using following code currently for the search. ReWriteRule ...
0
votes
1answer
30 views

Apache mod rewrite

I have 2 rules set in .htaccess RewriteRule ^([^/]*)/([^/]*)/([^/]*)\.html$ page.php?name=$1&do=$2&newstitle=$3 [L] RewriteRule ^([^/]*)/([^/]*)/([^/]*)\.html$ ...
0
votes
1answer
166 views

Multilanguage website mod rewrite problem

I have a problem with mod rewrite and did not find any solution here. Here is the problem: I have website with two languages and mod URL should look something like this: /eng/contact /srp/kontakt ...
0
votes
2answers
73 views

Advise on SEO-friendly URL structures

My site is written in php and has urls like this: http://mysite.com/index.php?m=apple&f=show&t=hello-world I want to change it to SEO friendly url.but i don't know which one is better: ...
0
votes
2answers
185 views

How to load contents from different directory for www.website.com

How to display contents from www directory for http://www.website.com i..e when a user visits http://www.website.com i want to display the contents from /www directory but keep the url same. I have ...
0
votes
1answer
139 views

.htaccess seo rewrite

my current setup is: site.com/DIR/56 what I want to do is: site.com/DIR/56/some-string-here-about-the-page my current .htaccess setup is: RewriteEngine on Options +Followsymlinks RewriteRule ...
0
votes
3answers
255 views

using mod_rewrite to create SEO friendly URLS

I've been searching google for this but can't find the solution to my exact needs. Basically I've already got my URL's named how I like them i.e. "http://mysite.com/blog/page1.php" What I'm trying to ...
0
votes
1answer
27 views

Changing CMS and moving site [closed]

I am changing my CMS. The old CMS urls are not seo-friendly for example mysite/modules.php?name=News&new_topic=8 the new is using nice-urls or seo-friendly urls ...
0
votes
3answers
813 views

noob's problem with mod rewrite and relative urls

I must be doing something terribly wrong because no matter how i try or google it, i can't find an answer :( So, i want to have a url like http://localhost/BLUEPRINT/list/857 to actually load a ...
0
votes
3answers
565 views

PHP: Parse different styles of friendly urls

I am writting my own small framework and I am going to implement friendly URLs there. mod_rewrite is great. But I want to be able to handle several types of friendly URLS at once: ...
0
votes
1answer
41 views

mod_rewite advice

I was wondering if you could advise if there is a more efficient way of writing what I have below? Could this be acheived in the 1 rule? RewriteRule ...
0
votes
3answers
85 views

mod_rewrite and hyperlinks

I'm trying to get my head around mod_rewrite and friendly URLS. OK, on a very basic level I have the following rule: RewriteRule ^register$ register.php [L] This allows me to browse to ...