CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   Apache configuration (http://www.codingforums.com/forumdisplay.php?f=69)
-   -   Simple rewrite problem (http://www.codingforums.com/showthread.php?t=248974)

tomharto 01-16-2012 09:36 AM

Simple rewrite problem
 
I need to make a simple rewrite apache rule so anything after #! in the URL gets redirected to index.php?page={TheString}

I tried this

RewriteEngine on
RewriteRule ^/([0-9][0-9])/$ http://localhost/221New/test.php?page=$1

but i get a 500 server error, can anyone see why or would i need to post more code? thats all i currently have in my htaccess file

Inigoesdr 01-16-2012 01:36 PM

Check your error log. You may not have mod_rewrite installed/enabled.

tomharto 01-16-2012 02:47 PM

The error i get is

[Mon Jan 16 14:46:20 2012] [alert] [client ::1] /Applications/XAMPP/xamppfiles/htdocs/221New/.htaccess: Invalid command '{\\rtf1\\mac\\ansicpg10000\\cocoartf824\\cocoasubrtf480', perhaps misspelled or defined by a module not included in the server configuration


I guess that means its not installed? Im using XAMPP, how would i go about installing it on there?

Inigoesdr 01-16-2012 06:41 PM

This page explains how to enable AllowOverride on OSX: http://blog.1on1.ro/2008/02/25/enabl...x-105-leopard/

Your httpd.conf is like in this folder: /Applications/XAMPP/ or /Applications/XAMPP/apache rather than the path they mention.

tomharto 01-17-2012 11:17 AM

Thanks, that helped :) apache now seems to be running okay.

Im having a little trouble with writing the rule though, i need it to pick up uppercase letters, lowercase letters and underscores what are after #! so i tried RewriteRule ^#!([a-zA-Z_])$ test.php?page=$1 but that didnt work, can you see what im doing wrong?

abduraooft 01-17-2012 11:45 AM

Quote:

what are after #!
Anything after the character # in the url won't be passed to the server.

tomharto 01-17-2012 11:53 AM

Yeah just did a bit of research and found that out :(, time to rethink my plan :p


All times are GMT +1. The time now is 04:58 AM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.