N
N
Novomir Lobanov2015-11-06 12:00:17
PHP
Novomir Lobanov, 2015-11-06 12:00:17

How to access your layout folders in Wordpress?

Добрый день!
Есть блог на Wordpress с залитыми внутрь папками с версткой других страниц - /product1, /product2 в корне.
Когда пытаюсь открыть эти страницы через прямую ссылку domain.ru/product1 - Wordpress выдает 404 ошибку, хотя в папке есть index-файл, пробовал и index.php, и index.html.
В интернете находил решение с RewriteEngine On/Off, но изменение на RewriteEngine Off не помогло.
На всякий случай привожу полный .htaccess

# by LetMeCode.ru
AddDefaultCharset UTF-8
Options -Indexes -ExecCGI
php_flag last_modified 1
DirectoryIndex index.htm index.html index.shtml index.cgi index.php3 index.php index.php4 index.phtml index.wml

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

Answer the question

In order to leave comments, you need to log in

1 answer(s)
I
Ivan Sergeevich, 2015-11-12
@novomir

Make these pages as page templates and put in the page-*.php theme folder, then create a page from the admin panel and select this template in the same place

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question