Module: Search Engine Friendly URL's
Posted by Martijn van Maasakkers
Re: Module: Search Engine Friendly URL's March 25, 2009 07:26AM |
Registered: 16 years ago Posts: 136 |
Still does not work in the PM inbox.
www.iloveqatar.net/forum
The url to view a pm looks like this
[iloveqatar.net] and gives an error
www.iloveqatar.net/forum
The url to view a pm looks like this
[iloveqatar.net] and gives an error
Re: Module: Search Engine Friendly URL's March 28, 2009 08:57PM |
Registered: 15 years ago Posts: 5 |
Re: Module: Search Engine Friendly URL's March 29, 2009 05:20AM |
Admin Registered: 20 years ago Posts: 8,532 |
Can you explain why it drives you crazy and why you see it at something that needs a fix?
Maurice Makaay
Phorum Development Team
my blog linkedin profile secret sauce
Maurice Makaay
Phorum Development Team
my blog linkedin profile secret sauce
Re: Module: Search Engine Friendly URL's April 12, 2009 06:52PM |
Registered: 15 years ago Posts: 6 |
Re: Module: Search Engine Friendly URL's April 13, 2009 10:08AM |
Registered: 15 years ago Posts: 1 |
Re: Module: Search Engine Friendly URL's April 13, 2009 12:19PM |
Admin Registered: 20 years ago Posts: 8,532 |
In that case, your hosting provider probably does not allow you to create rewrite rules in your own .htaccess files. Contact your hosting provider and ask them if they can allow the features that you need from this module's .htaccess.
Another option could be that you uploaded the .htaccess, but without enough permissions for the webserver to read the file. This is less likely than the previous option, because normally the permissions of uploaded files are correct for web use. If you normally can upload a PHP file without tinkering with its permissions, then it wouldn't be needed for the .htaccess file either.
Your hosting provider has access to the web server's error logs. They should be able to tell you what the exact problem case is here. If you have access to your error logs yourself, then check them out. There's most probably a hint in there about the cause of this internal server error.
Maurice Makaay
Phorum Development Team
my blog linkedin profile secret sauce
Another option could be that you uploaded the .htaccess, but without enough permissions for the webserver to read the file. This is less likely than the previous option, because normally the permissions of uploaded files are correct for web use. If you normally can upload a PHP file without tinkering with its permissions, then it wouldn't be needed for the .htaccess file either.
Your hosting provider has access to the web server's error logs. They should be able to tell you what the exact problem case is here. If you have access to your error logs yourself, then check them out. There's most probably a hint in there about the cause of this internal server error.
Maurice Makaay
Phorum Development Team
my blog linkedin profile secret sauce
error when trying to send pm April 14, 2009 08:49AM |
Registered: 16 years ago Posts: 24 |
Re: Module: Search Engine Friendly URL's April 16, 2009 12:50AM |
Registered: 16 years ago Posts: 2 |
Re: Module: Search Engine Friendly URL's April 16, 2009 03:07PM |
Admin Registered: 20 years ago Posts: 8,532 |
Without mod_rewite, you could only produce less friendly URLs looking like:
www.yoursite.com/forum/index.php/friendly/part/goes/here
so with the index.php in between. The only way to get rid of this, is URL rewriting where
www.yoursite.com/forum/friendly/part/goes/here
gets rewritten to the above URL internally.
Maurice Makaay
Phorum Development Team
my blog linkedin profile secret sauce
www.yoursite.com/forum/index.php/friendly/part/goes/here
so with the index.php in between. The only way to get rid of this, is URL rewriting where
www.yoursite.com/forum/friendly/part/goes/here
gets rewritten to the above URL internally.
Maurice Makaay
Phorum Development Team
my blog linkedin profile secret sauce
Re: Module: Search Engine Friendly URL's April 16, 2009 05:22PM |
Registered: 16 years ago Posts: 2 |
Actually, sorry, what I really meant to ask is if it was possible to simplify the rules above so that essentially one file handles the URL routing. Something like the following:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
I'm looking to integrate Phorum into an existing site that already has something similar and I'd like to avoid adding additional rewrite rules if possible. Ideally, I'd have URLs that look like the following:
domain.com/forums/forum_name/topic#post_id
This is similar to how SimplePress handles URLs. Is it possible to accomplish something like that with a Phorum module?
Edited 1 time(s). Last edit at 04/16/2009 05:22PM by Daed Lee.
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
I'm looking to integrate Phorum into an existing site that already has something similar and I'd like to avoid adding additional rewrite rules if possible. Ideally, I'd have URLs that look like the following:
domain.com/forums/forum_name/topic#post_id
This is similar to how SimplePress handles URLs. Is it possible to accomplish something like that with a Phorum module?
Edited 1 time(s). Last edit at 04/16/2009 05:22PM by Daed Lee.
Sorry, only registered users may post in this forum.