Results 1 to 4 of 4
Thread: apache rewrite rule format
-
11-03-2008, 10:28 PM #1
Freshman
- Join Date
- Aug 2008
- Posts
- 10
- Thanks
- 2
- Thanked 0 Times in 0 Posts
- Feedback Score
- 0
apache rewrite rule format
Hello all,
I have dynamic pages that look like this.
/index.php?purl=text_variable_with_underscore_2355. html
What would be the rewrite rule to get them to look like this.
/text_variable_with_underscore_2355.html
Their is no other page besides index.php for this site.
Thanks
-
02-27-2011, 11:21 PM #2
Sophomore
- Join Date
- Feb 2011
- Posts
- 67
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Feedback Score
- 0
hi
This is rule or what?
-
05-08-2011, 02:59 PM #3
Try:
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteRule /index\.php\?purl=(.*)$ /$1
-
12-22-2011, 01:24 PM #4
Freshman
- Join Date
- Dec 2011
- Posts
- 12
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Feedback Score
- 0
For a long time. I'm having this problem. Now solved. Thank you.
Similar Threads
-
Enable Url Rewriting on Apache Server 2.x
By manik in forum Apache ServerReplies: 10Last Post: 09-26-2011, 07:42 AM -
What is Apache?
By antonclovelly in forum Web Development - Programming & CodingReplies: 0Last Post: 05-17-2010, 06:29 AM -
URL Rewrite Technologies
By Abina in forum ColdFusionReplies: 1Last Post: 01-31-2010, 11:05 AM -
How to add HTML code to format in CFMAIL
By Abina in forum ColdFusionReplies: 1Last Post: 01-31-2010, 10:45 AM -
Currency Format script
By JavaScriptBank in forum JavaScript & AJAXReplies: 0Last Post: 01-21-2010, 08:46 PM


Reply With Quote

