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 05-22-2012, 11:45 AM   PM User | #1
crmpicco
Senior Coder

 
crmpicco's Avatar
 
Join Date: Jan 2005
Location: Mauchline, Scotland
Posts: 1,091
Thanks: 15
Thanked 1 Time in 1 Post
crmpicco has a little shameless behaviour in the past
htaccess RewriteRule to redirect from a directory that doesn't exist

I am attempting to redirect any URLs that attempt to access a directory that doesn't exist, however I am getting a 404 when trying the following:

Quote:
RewriteRule ^picco/(.*)$ /rangers/$1 [L,R=301]
There is no directory called picco (it used to exist) however, when anyone tries to access a page picco/index.php for example I want to redirect to rangers/index.php.

Is this possible?
crmpicco is offline   Reply With Quote
Old 05-22-2012, 11:54 AM   PM User | #2
MarPlo
Regular Coder

 
Join Date: Mar 2011
Posts: 145
Thanks: 0
Thanked 20 Times in 20 Posts
MarPlo is an unknown quantity at this point
Hi,
Try this rewrite rule:
Code:
RewriteRule ^picco/([A-Za-z0-9_\.-]+)$ rangers/$1 [R=301]
Or this:
Code:
RewriteRule ^(.*)picco/([A-Za-z_0-9\.-]+)$ http://www.domain.net/rangers/$2 [R=301]
__________________
MarPlo is offline   Reply With Quote
Old 05-22-2012, 12:39 PM   PM User | #3
crmpicco
Senior Coder

 
crmpicco's Avatar
 
Join Date: Jan 2005
Location: Mauchline, Scotland
Posts: 1,091
Thanks: 15
Thanked 1 Time in 1 Post
crmpicco has a little shameless behaviour in the past
Thanks.

This also worked:

Quote:
RewriteBase /
RewriteRule ^picco(.*)$ /rangers/$1 [R=301,L]
crmpicco is offline   Reply With Quote
Reply

Bookmarks

Tags
apache, htaccess, rewriterule

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 08:44 PM.


Advertisement
Log in to turn off these ads.