Opening .php file
-
I need to open this file that I’m creating something but it’s returning 404 page error.
Something that I can add to htacces to ignore the 404 and open this file? I tried the rule below but it doesn’t work, in this case I have to open the URL like
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^states/(.*)/$ wp-content/plugins/elite/routines.php?state=$1 [QSA,L]
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Opening .php file’ is closed to new replies.