laanes Posted February 3, 2012 Share Posted February 3, 2012 I can't get my head around rewriting my websites URL's. I'd like to rewrite mywebsite.com/page.php to be accessed as: mywebsite.com/page or mywebsite.com/PAGE If there is no such page, then redirect to home page. So i've tried this: RewriteRule ^(\w+)\/?$ $1.php [NC] [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* index.php Result: mywebsite.com/page_that_doesn't_exist - works as intended, takes me to index.php mywebsite.com/page works fine. mywebsite.com/PAGE gives me this - You don't have permission to access /C:/wamp/www/mywebsite.com/PAGE.php/ on this server. Why this kind of error and can i maybe force lowercase on PAGE ? Quote Link to comment https://forums.phpfreaks.com/topic/256328-mod_rewrite-uppercase/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.