Local install problems
-
I have installed WP locally as I want to work on a theme that I am creating. However, when I try to click a link I am taken to the the directory listing. For example – to show all the posings in the Personal cat the URI is showing as
https://localhost/TeeJayUu/blog/?cat=5
if I type in the address bar
https://localhost/TeeJayUu/blog/index.php?cat=5
it works OK. I have been told it may be down to the .htacess file which I have created under localhost/TeeJayUu/blog/ and changed RewriteBase to /TeeJayUu/blog/ but this still hasn’t changed things. My .htaccess file is:
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName https://www.teejayuu.co.uk
AuthUserFile /home/teejayuu/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/teejayuu/public_html/_vti_pvt/service.grp
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /TeeJayUu/blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I really would like to get this solved so I can test my theme
Thanks TJ
- The topic ‘Local install problems’ is closed to new replies.