.htaccess not working properly
my htaccess not working properly
----------------------------------
-------------------------------------
above code not working .
if i add
Options +MultiViews
to the above code , then only signup working .
i need member profile to be worked.
------thank you
- PHP4 or PHP5 with the following configuration
- safe_mode = off
- short_open_tag = on
- output_buffering = on
- register_argc_argv = On
- session.gc_maxlifetime = 15000
- register_globals = off
- magic_quotes_gpc = on
- and also # Apache web server with mod_rewrite enabled.
my htaccess not working properly
----------------------------------
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^signup$ /signup.php
RewriteRule ^members/(.*)/(.*) /memberprofile.php?pid=$1&name=$2
above code not working .
if i add
Options +MultiViews
to the above code , then only signup working .
i need member profile to be worked.
------thank you
Last edited by a moderator: