Forum Moderators: phranque
I've just moved a forum type script from a subdomain to a subdirectory. The pages are now timing out and I have no idea why.
Both the main website and the forum script use mod_rewrite for seo friendly URI's, each having their own .htaccess file.
I've tried deleting the .htaccess used by the main website (as it's in the root folder) but had no luck.
File structure.
-Public_html
¦-.htaccess
+forum
. -htaccess
Anyone have any ideas?
If you can't 'undo' what you've done, and if you're not conversant with mod_rewrite coding, I'd suggest you hire someone familiar with your forum script to help you move it. Otherwise, consider putting it back where it was. We can handle specific questions about .htaccess file and mod_rewrite coding here, but we're really not set up to be a 'help desk' for your forum script... :(
Jim
Unfortunately this is a custom made script and I am no longer in contact with the programmer.
I was wondering if there was a possibility of the two .htaccess files possibly conflicting?
Upon further investigation the script works if a forward slash (/) is added to the end of the url.
Although none of the links in the source code link to a url with a forward slash and didn't use them whilst on the subdomain.
I guess I could go through the whole code and add a / to all of the links?
Cheers for the help anyway guys.
Fix the problem at its source instead of trying to find a 'quick fix.' Quick fixes tend to have unexpected and unpleasant side effects, especially as regards search results.
Nothing but a top-down analysis of 'how your site works' will do in this case. Start with a link on a page, and work through the .htaccess processing that handles the linked URL when it is requested by the client from your server, through its translation to a server filepath, and any handling of that URL within whatever script that URL gets 'delivered to' as a result of the .htaccess processing.
Jim