wwfc_barmy_army Posted June 11, 2009 Share Posted June 11, 2009 Hello. I have this code: Options +FollowSymLinks RewriteEngine On RewriteBase / RewriteRule ^([^/]+)?/?$ index.php?do=$1 [L,QSA] Which works fine for what i need it for eg: www.mydomain.com/google.com but if i want to show a subdirectory they it messes it up eg mydomain.com/subdirectory/ UNLESS i use eg mydomain.com/subdirectory/index.php. Any ideas how i can allow subdirectories? Thanks. Quote Link to comment https://forums.phpfreaks.com/topic/161866-solved-mod_rewrite-help-redirect/ Share on other sites More sharing options...
dreamwest Posted June 12, 2009 Share Posted June 12, 2009 Is this a real directory or fake (rewritten)? Quote Link to comment https://forums.phpfreaks.com/topic/161866-solved-mod_rewrite-help-redirect/#findComment-854305 Share on other sites More sharing options...
wwfc_barmy_army Posted June 12, 2009 Author Share Posted June 12, 2009 Real directory. Thanks. Quote Link to comment https://forums.phpfreaks.com/topic/161866-solved-mod_rewrite-help-redirect/#findComment-854306 Share on other sites More sharing options...
dreamwest Posted June 12, 2009 Share Posted June 12, 2009 Simply create another htaccess for the directory Quote Link to comment https://forums.phpfreaks.com/topic/161866-solved-mod_rewrite-help-redirect/#findComment-854310 Share on other sites More sharing options...
wwfc_barmy_army Posted June 12, 2009 Author Share Posted June 12, 2009 I've just tried a blank .htaccess in the subdirectory and it didnt' work. Quote Link to comment https://forums.phpfreaks.com/topic/161866-solved-mod_rewrite-help-redirect/#findComment-854316 Share on other sites More sharing options...
dreamwest Posted June 12, 2009 Share Posted June 12, 2009 No, youll have to add the rewrite to it, just treat it like the root directory The directory htaccess will overwrite the root htaccess http://site.com/dir/.htaccess Options +FollowSymLinks RewriteEngine On RewriteRule ^$ index.php So http://site.com/dir/ will go to http://site.com/dir/index.php Quote Link to comment https://forums.phpfreaks.com/topic/161866-solved-mod_rewrite-help-redirect/#findComment-854324 Share on other sites More sharing options...
wwfc_barmy_army Posted June 12, 2009 Author Share Posted June 12, 2009 Ahh i see. Thanks for your help dreamwest! Quote Link to comment https://forums.phpfreaks.com/topic/161866-solved-mod_rewrite-help-redirect/#findComment-854328 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.