Go Back   CodingForums.com > :: Server side development > Apache configuration

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 08-28-2011, 10:11 PM   PM User | #1
Jamesking56
New to the CF scene

 
Join Date: Aug 2011
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Jamesking56 is an unknown quantity at this point
I need some help with .htaccess rewriting...

Hey,

I'm trying to make a .htaccess file for my new site.

the first thing I want my .htaccess to do is to change my .php extension into a /. Like so:

Code:
http://www.example.com/about.php

to

http://www.example.com/about/
Then, I want it's sub sections to be created logically. Like so:

Code:
http://www.example.com/about-section.php

to

http://www.example.com/about/section/
How do I do this in my .htaccess file?
Jamesking56 is offline   Reply With Quote
Old 08-29-2011, 06:57 AM   PM User | #2
Cags
New Coder

 
Join Date: Jul 2011
Posts: 67
Thanks: 0
Thanked 13 Times in 13 Posts
Cags is an unknown quantity at this point
Change the URL's on your site to look like what you want them to be, then do something along the lines of...

Code:
RewriteCond %{REQUEST_URI} !-f
RewriteCond %{REQUEST_URI} !-d
RewriteRule ^([^/])/?$ /$1.php [L]

RewriteCond %{REQUEST_URI} !-f
RewriteCond %{REQUEST_URI} !-d
RewriteRule ^([^/])/([^/])/?$ /$1-$2.php [L]
Cags is offline   Reply With Quote
Old 08-29-2011, 05:19 PM   PM User | #3
Jamesking56
New to the CF scene

 
Join Date: Aug 2011
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Jamesking56 is an unknown quantity at this point
That code doesn't seem to work at all
Jamesking56 is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 09:19 PM.


Advertisement
Log in to turn off these ads.