My Permalinks are currently set to /%postname%/ and my .htaccess is:
# BEGIN WordPress
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
But it wont rewrite /index.php/reservations-hp/ to /reservations-hp/. It give me No input file specified. am I missing something? is my .htaccess not correct?
-
This reply was modified 2 years, 7 months ago by mcsmetro.