Php : SEO friendly urls?

Sample rules for . Htaccess (once you make sure mod_rewrite is enabled): RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME}! -f RewriteCond %{REQUEST_FILENAME}!

-d RewriteRule (.*) index. Php? Page=$1 L These rules match any URL that isn't an already existing file and passes it to your script.

Thanks a lot :) – john Sep 1 '10 at 5:04.

Yes, you can do that by using . Htaccess for that. There are plenty of tutorials available on Internet.

The module used to do that is called mod_rewrite. It re-routes incoming requests based on regular expression patterns. These tutorials explains it pretty well: 1.

A Beginner's Guide to URL Rewriting 2. easymodrewrite.com/guide-syntax You will also need to know the basics about regular expressions if you plan to use mod_rewrite. This site is one of the best regular expression resources out there.

- Regular Expression Tutorial.

Thanks a lot :) – john Sep 1 '10 at 5:05.

In . Htaccess: Options +FollowSymLinks RewriteEngine On RewriteRule (.*)/(.*)$ index. Php?

Name=$2 Where $2 has the content of the second parentheses.

Thanks a lot :) – john Sep 1 '10 at 5:06.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions