Permalinks for profiles not working
I have revised 99php.ini file to have Rewrite Engine On. Put htaccess file with the following in the root folder of the domain name holding the Dolphin software:
<IfModule mod_rewrite.c>
RewriteEngine on
# RewriteRule ^profile\.php rewrite_name.php [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule .+ - [L]
RewriteRule [A-Za-z0-9_-]+ rewrite_name.php [L]
</IfModule>
Chmod .htaccess file 644. Links to users profile using the friendly permalinks does not work. Permalinks using Wordpress DOES work, without any workarounds needed.
Any help?
http://tinyurl.com/yw6bj2
Can you please suggest me what may wrong?
-- Quoted --
mrpowless wrote
-------------
I'd try to uncomment:
# RewriteRule ^profile\.php rewrite_name.php [L]
so it looks like:
RewriteRule ^profile\.php rewrite_name.php [L]
from existing .htaccess an make it look for rewrite_name.php
then load below see more
Smokky - I would try to chmod the file to 644, make sure it is in the root folder where Dolphin is. Make sure you have mod rewrite engine on in the base of your server.
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteRule ^profile\.php rewrite_name.php [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule .+ - [L]
RewriteRule [A-Za-z0-9_-]+ rewrite_name.php [L]
</IfModule>
Use in good health.