I am trying to install the Static Pages help, i dont know what to do with this
Its SQL
and it says do this to your .htaccess file, where do i find that?
Its SQL
Code:
CREATE TABLE phpbb_pages (
page_id int(11) unsigned NOT NULL auto_increment,
page_title varchar(255) character set utf8 collate utf8_unicode_ci NOT NULL,
page_desc mediumtext character set utf8 collate utf8_bin NOT NULL,
page_content mediumtext character set utf8 collate utf8_bin NOT NULL,
page_url varchar(255) character set utf8 collate utf8_bin NOT NULL,
bbcode_uid varchar(8) character set utf8 collate utf8_bin NOT NULL,
bbcode_bitfield varchar(255) character set utf8 collate utf8_bin NOT NULL default '',
page_time int(11) unsigned NOT NULL default '0',
page_order int(11) unsigned NOT NULL default '0',
page_display tinyint(1) unsigned NOT NULL default '0',
page_display_guests tinyint(1) unsigned NOT NULL default '0',
page_author mediumint(8) unsigned NOT NULL,
PRIMARY KEY (page_id)
);
and it says do this to your .htaccess file, where do i find that?
Code:
If you want to use URL rewrites, open your .htaccess file and add this at the end:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([A-Za-z0-9\-\+]+)$ ./page.php?p=$1 [L]
Your pages will be then accessible as yourboard.com/pagename







