Tagged Questions

3
votes
5answers
167 views

Couple of questions about .htaccess and friendly urls

I've always been bad at apache and used very simple solutions. Right now I have built a cms software.. but the .htaccess is starting to be a huge downsize. I will first explain, how my friendly-urls ...
3
votes
3answers
207 views

URL Generation Technique with PHP

I have a build a web portal based on the Cricket concept, I have build a Custom based CMS where I can upload the News for the site Once I upload the news, the URL Will be like this ...
3
votes
3answers
583 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
5answers
156 views

Is it against to MVC pattern calling a view in another view with variables?

edited for clarification and modified example pseudo-code I was trying to understand the concept of mvc and sometimes it gives me some serious headaches. I was facing with a problem and trying to ...
2
votes
1answer
242 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
248 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
4answers
166 views

SEO Friendly links, js and/or php stripping

I have seen this being done on the wordpress and i dont have access to word press :) but i need to return a url string removing any non valid characters from it and converting some characters into ...
1
vote
2answers
251 views

Zen Cart SEO URLs [closed]

What is the experience installing a decent SEO friendly URL module to an existing store based on Zen Cart? I've seen this, but it won't autogenerate existing products URLs, ...
1
vote
1answer
674 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
536 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
739 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
5answers
416 views

How to improve my Seo url generator

i have this function which generates a seo friendly url from a string : function seo_titleinurl_generate($title) { $title=substr($title,0,160); $title = ...
1
vote
3answers
543 views

MYSQL: Friendly URLs sql query

I want to make a query using which I can check that URL which I am making for a new video entry is not present in my db. My current query is: SELECT Count(videoid) FROM video WHERE titleurl = ...
0
votes
1answer
44 views

Internal page - don't want it crawled

Please indulge my simplistic example: Let's say I have 1 million pages on my site. Each page has an ID number (i.e. www.mysite.com/product.php?id=1 .... upto id=1,000,000 I want to make a page that ...
0
votes
1answer
76 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
67 views

PHP - How can I replace dashes with spaces?

I am currently using the following code to convert my strings to seo friendly urls: function url($url) { $url = str_replace("&nbsp;", " ", $url); $url = str_replace(array("'", ...
0
votes
5answers
250 views

SEO tutorials / books? - PHP, JQuery, Ajax and JavaScript

Is there any books or tutorials about how to make your PHP, JQuery, Ajax and JavaScript code Search Engine Optimization (SEO) Friendly?
0
votes
2answers
198 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
145 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
4answers
462 views

How to get id from seo friendly url using php?

How do i get the id of the user from seo friendly url? Here's the url (1 is the id) http://www.website.com/users/edit/1 And, if the url is http://www.website.com/users/edit/1/stack-overflow/ in ...
0
votes
1answer
549 views

How can I remove ID veriable from URL with htaccess?

I'm sorry for complexive question. I've got a website that reading contents from MySQL database to get video information just like YouTube. I've 7 column: id, title, desc, url, date, whosadded, ...
0
votes
6answers
311 views

How to make website more SEO friendly when the content is coming from the database?

How can i make my database content search-able on SE, so basically how to make a website more SEO friendly where the data is not static, it will come from the database.
0
votes
3answers
571 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: ...
-2
votes
1answer
44 views

Related SEO and PHP Framework

I am making a movie database and discussion forum just for my state. I likes to do more SEO work and expecting more traffic. I likes to do the work in Codeigniter framework . My doubt is how ...
-2
votes
1answer
119 views

What's the SEO-Friendly URL's Structure? [closed]

I Want to Know about SEO-Friendly URLs Structure ?? And How Can Make Them in PHP??